* Refactor multiSocket.ts to check for server mode before checking for allowedPorts inclusion when accepting a new socket connection.
This commit is contained in:
parent
3a1ea39a79
commit
e3e6757e47
|
@ -204,6 +204,7 @@ export default class MultiSocketProxy extends Proxy {
|
|||
decode: this._server ? json.decode : socketEncoding.decode,
|
||||
},
|
||||
async onmessage(m: SocketRequest | TcpSocketConnectOpts) {
|
||||
if (self._server) {
|
||||
if (
|
||||
self._allowedPorts.length &&
|
||||
!self._allowedPorts.includes((m as TcpSocketConnectOpts).port)
|
||||
|
@ -216,6 +217,7 @@ export default class MultiSocketProxy extends Proxy {
|
|||
});
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
m = m as SocketRequest;
|
||||
|
||||
|
|
Loading…
Reference in New Issue