*Put _nextPeer into the constructor

This commit is contained in:
Derrick Hammer 2023-04-16 05:48:32 -04:00
parent 35bf05c25e
commit b04db8668b
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 1 deletions

View File

@ -89,9 +89,10 @@ export default class MultiSocketProxy extends Proxy {
await conn.init();
this.emit("peer", conn);
}
private socketClass: any;
private _peers: Map<string, PeerEntity> = new Map<string, PeerEntity>();
private _nextPeer = roundRobinFactory(this._peers);
private _nextPeer;
private _server = false;
private _allowedPorts = [];
@ -109,6 +110,7 @@ export default class MultiSocketProxy extends Proxy {
if (options.server) {
this._server = true;
}
this._nextPeer = roundRobinFactory(this._peers);
}
private _socketMap = new Map<number, number>();