mirror of
https://github.com/bitinflow/server.git
synced 2026-03-13 05:25:53 +00:00
committed by
Roman Shtylman
parent
d9fca62c17
commit
78c06f8fc4
@@ -145,13 +145,13 @@ export default function(opt) {
|
||||
server.on('upgrade', (req, socket, head) => {
|
||||
const hostname = req.headers.host;
|
||||
if (!hostname) {
|
||||
sock.destroy();
|
||||
socket.destroy();
|
||||
return;
|
||||
}
|
||||
|
||||
const clientId = GetClientIdFromHostname(hostname);
|
||||
if (!clientId) {
|
||||
sock.destroy();
|
||||
socket.destroy();
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user