Improve the server so that both protocol (WebSocket and WebRTC) can use the same port
This commit is contained in:
@@ -157,6 +157,7 @@ let run = module.exports.run = function (storage, socketServer) {
|
||||
});
|
||||
}, 5000);
|
||||
socketServer.on('connection', function(socket) {
|
||||
if(socket.upgradeReq.url !== '/cryptpad_websocket') { return; }
|
||||
let conn = socket.upgradeReq.connection;
|
||||
let user = {
|
||||
addr: conn.remoteAddress + '|' + conn.remotePort,
|
||||
|
||||
Reference in New Issue
Block a user