Fix bug caused by upgrade to ws version 3

This commit is contained in:
Sam Frances 2017-05-17 15:37:07 +01:00
parent f3a0ce06a9
commit 3e17187216
1 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,9 @@ var argv = require('optimist').argv,
// Handle new WebSocket client
new_client = function(client) {
new_client = function(client, req) {
var clientAddr = client._socket.remoteAddress, log;
console.log(client.upgradeReq.url);
console.log(req.url);
log = function (msg) {
console.log(' ' + clientAddr + ': '+ msg);
};
@ -92,7 +92,7 @@ http_request = function (request, response) {
var uri = url.parse(request.url).pathname
, filename = path.join(argv.web, uri);
fs.exists(filename, function(exists) {
if(!exists) {
return http_error(response, 404, "404 Not Found");