*Remove _socketOptions overrides

This commit is contained in:
Derrick Hammer 2023-04-15 22:35:22 -04:00
parent 5fa5385249
commit 95d866c69e
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 0 additions and 3 deletions

View File

@ -78,9 +78,6 @@ export default class MultiSocketProxy extends Proxy {
constructor(options: MultiSocketProxyOptions) {
super(options);
this._socketOptions.onchannel = this.handleNewPeerChannel.bind(this);
this._socketOptions.onclose = this.handleClosePeer.bind(this);
this._socketOptions.onopen = this.handlePeer.bind(this);
if (options.socketClass) {
this.socketClass = options.socketClass;
} else {