mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
515 B
22 lines
515 B
var tls = require('tls');
|
|
var http = require('http');
|
|
var inherits = require('util').inherits;
|
|
|
|
|
|
function Server(opts, requestListener) {
|
|
if (!(this instanceof Server)) return new Server(opts, requestListener);
|
|
tls.Server.call(this, opts, http._connectionListener);
|
|
|
|
if (requestListener) {
|
|
this.addListener('request', requestListener);
|
|
}
|
|
}
|
|
inherits(Server, tls.Server);
|
|
|
|
|
|
exports.Server = Server;
|
|
|
|
|
|
exports.createServer = function(opts, requestListener) {
|
|
return new Server(opts, requestListener);
|
|
};
|
|
|