correct ws usage

Este commit está contenido en:
AJ ONeal 2018-07-03 03:30:15 -06:00
padre e785d9199d
commit 648ed4e4d5
Se han modificado 1 ficheros con 3 adiciones y 3 borrados

Ver fichero

@ -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 () {