correct ws usage

This commit is contained in:
AJ ONeal 2018-07-03 03:30:15 -06:00
parent e785d9199d
commit 648ed4e4d5
1 changed files with 3 additions and 3 deletions

View File

@ -57,9 +57,9 @@ var WebSocket = require('ws');
var ws = new WebSocket.Server({ server: server });
ws.on('connection', function (ws, req) {
// inspect req.headers.authorization (or cookies) for session info
ws.write("[Secure Echo Server] Hello!\nAuth: '" + (req.headers.authorization || '') + "'\n"
+ "Cookie: '" + (req.headers.cookie || '') + "'\n");
ws.on('data', function (data) { ws.write(data); });
ws.send("[Secure Echo Server] Hello!\nAuth: '" + (req.headers.authorization || 'none') + "'\n"
+ "Cookie: '" + (req.headers.cookie || 'none') + "'\n");
ws.on('message', function (data) { ws.send(data); });
});
server.listen(443, function () {