From 21f7f2e67d41cbd0df2f637670d87fe9c827fc8a Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 16 Nov 2022 02:41:56 -0500 Subject: [PATCH] *Update dist --- dist/index.d.ts | 4 +++- dist/index.d.ts.map | 2 +- dist/index.js | 8 +++++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/dist/index.d.ts b/dist/index.d.ts index 83ff0d9..41c117d 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -8,12 +8,14 @@ export default class DHTFlood extends EventEmitter { private messageNumber; private lru; private swarm; - constructor({ lruSize, ttl, messageNumber, id, swarm, }?: { + private protocol; + constructor({ lruSize, ttl, messageNumber, id, swarm, protocol, }?: { lruSize?: number | undefined; ttl?: number | undefined; messageNumber?: number | undefined; id?: Buffer | undefined; swarm?: null | undefined; + protocol?: string | undefined; }); private handleMessage; private setupPeer; diff --git a/dist/index.d.ts.map b/dist/index.d.ts.map index 7f6d025..3d1ceb2 100644 --- a/dist/index.d.ts.map +++ b/dist/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,OAAO,YAAY,MAAM,QAAQ,CAAC;AAkBlC,eAAO,MAAM,YAAY,eAAuB,CAAC;AAEjD,MAAM,CAAC,OAAO,OAAO,QAAS,SAAQ,YAAY;IAChD,OAAO,CAAC,EAAE,CAAS;IACnB,OAAO,CAAC,GAAG,CAAS;IACpB,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,GAAG,CAAM;IACjB,OAAO,CAAC,KAAK,CAAM;gBAEP,EACV,OAAkB,EAClB,GAAS,EACT,aAAiB,EACjB,EAA2B,EAC3B,KAAY,GACb;;;;;;KAAK;IAkBN,OAAO,CAAC,aAAa;IAkCrB,OAAO,CAAC,SAAS;IA6CjB,SAAS,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,SAAW;IAenC,IAAI,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,SAAW;CAY1C"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,OAAO,YAAY,MAAM,QAAQ,CAAC;AAkBlC,eAAO,MAAM,YAAY,eAAuB,CAAC;AAEjD,MAAM,CAAC,OAAO,OAAO,QAAS,SAAQ,YAAY;IAChD,OAAO,CAAC,EAAE,CAAS;IACnB,OAAO,CAAC,GAAG,CAAS;IACpB,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,GAAG,CAAM;IACjB,OAAO,CAAC,KAAK,CAAM;IACnB,OAAO,CAAC,QAAQ,CAAS;gBAEb,EACV,OAAkB,EAClB,GAAS,EACT,aAAiB,EACjB,EAA2B,EAC3B,KAAY,EACZ,QAAmB,GACpB;;;;;;;KAAK;IAmBN,OAAO,CAAC,aAAa;IAkCrB,OAAO,CAAC,SAAS;IA6CjB,SAAS,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,SAAW;IAenC,IAAI,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,SAAW;CAY1C"} \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index 7f1ebef..3c00f1d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -26,19 +26,21 @@ class DHTFlood extends events_1.default { messageNumber; lru; swarm; - constructor({ lruSize = LRU_SIZE, ttl = TTL, messageNumber = 0, id = crypto_1.default.randomBytes(32), swarm = null, } = {}) { + protocol; + constructor({ lruSize = LRU_SIZE, ttl = TTL, messageNumber = 0, id = crypto_1.default.randomBytes(32), swarm = null, protocol = PROTOCOL, } = {}) { super(); this.id = id; this.ttl = ttl; this.messageNumber = messageNumber; this.lru = new lru_1.default(lruSize); + this.protocol = protocol; if (!swarm) { throw new Error("swarm is required"); } this.swarm = swarm; this.swarm.on("connection", (peer) => { const mux = protomux_1.default.from(peer); - mux.pair({ protocol: PROTOCOL }, () => this.setupPeer(peer)); + mux.pair({ protocol: this.protocol }, () => this.setupPeer(peer)); }); } handleMessage({ originId, messageNumber, ttl, data }, messenger) { @@ -68,7 +70,7 @@ class DHTFlood extends events_1.default { const self = this; if (!mux.opened({ protocol: PROTOCOL })) { chan = mux.createChannel({ - protocol: PROTOCOL, + protocol: this.protocol, async onopen() { self.emit("peer-open", peer); },