parent
2433ec8276
commit
945f877d30
@ -39,6 +39,7 @@ var server = https.createServer(options, function(req, res) {
|
||||
res.writeHead(200, { 'Content-Type': 'text/plain' });
|
||||
res.end('You are from: ' + req.connection.remoteAddress);
|
||||
});
|
||||
req.resume();
|
||||
});
|
||||
|
||||
server.listen(common.PORT, "127.0.0.1", function() {
|
||||
|
@ -42,6 +42,7 @@ var server = https.createServer(options, function (req, res) {
|
||||
res.writeHead(200, { 'Content-Type': 'text/plain' });
|
||||
res.end('You are from: ' + req.connection.remoteAddress);
|
||||
});
|
||||
req.resume();
|
||||
});
|
||||
|
||||
server.listen(common.PORT, "127.0.0.1", function() {
|
||||
@ -59,6 +60,7 @@ server.listen(common.PORT, "127.0.0.1", function() {
|
||||
server.close();
|
||||
process.exit();
|
||||
});
|
||||
res.resume();
|
||||
});
|
||||
req.end();
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user