@libp2p/kad-dht 15.1.0 → 15.1.1-776cb432d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +4 -4
- package/dist/src/content-fetching/index.js +1 -1
- package/dist/src/content-fetching/index.js.map +1 -1
- package/dist/src/content-routing/index.js +1 -1
- package/dist/src/content-routing/index.js.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/message/dht.d.ts +1 -1
- package/dist/src/message/dht.d.ts.map +1 -1
- package/dist/src/message/dht.js +0 -5
- package/dist/src/message/dht.js.map +1 -1
- package/dist/src/network.d.ts +2 -2
- package/dist/src/network.d.ts.map +1 -1
- package/dist/src/network.js.map +1 -1
- package/dist/src/peer-routing/index.js +2 -2
- package/dist/src/peer-routing/index.js.map +1 -1
- package/dist/src/query/manager.d.ts +1 -1
- package/dist/src/query/manager.d.ts.map +1 -1
- package/dist/src/query/manager.js +0 -1
- package/dist/src/query/manager.js.map +1 -1
- package/dist/src/rpc/handlers/add-provider.d.ts +1 -1
- package/dist/src/rpc/handlers/add-provider.d.ts.map +1 -1
- package/dist/src/rpc/index.d.ts +7 -7
- package/dist/src/rpc/index.d.ts.map +1 -1
- package/dist/src/rpc/index.js +1 -1
- package/dist/src/rpc/index.js.map +1 -1
- package/dist/src/topology-listener.d.ts +2 -2
- package/dist/src/topology-listener.d.ts.map +1 -1
- package/package.json +29 -39
- package/src/content-fetching/index.ts +1 -1
- package/src/content-routing/index.ts +1 -1
- package/src/index.ts +1 -1
- package/src/message/dht.ts +2 -7
- package/src/network.ts +3 -2
- package/src/peer-routing/index.ts +2 -2
- package/src/query/manager.ts +1 -2
- package/src/rpc/handlers/add-provider.ts +1 -1
- package/src/rpc/index.ts +12 -8
- package/src/topology-listener.ts +2 -2
- package/dist/typedoc-urls.json +0 -63
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/kad-dht",
|
|
3
|
-
"version": "15.1.
|
|
3
|
+
"version": "15.1.1-776cb432d",
|
|
4
4
|
"description": "JavaScript implementation of the Kad-DHT for libp2p",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/kad-dht#readme",
|
|
@@ -32,16 +32,6 @@
|
|
|
32
32
|
"import": "./dist/src/index.js"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
|
-
"eslintConfig": {
|
|
36
|
-
"extends": "ipfs",
|
|
37
|
-
"parserOptions": {
|
|
38
|
-
"project": true,
|
|
39
|
-
"sourceType": "module"
|
|
40
|
-
},
|
|
41
|
-
"ignorePatterns": [
|
|
42
|
-
"src/message/dht.d.ts"
|
|
43
|
-
]
|
|
44
|
-
},
|
|
45
35
|
"scripts": {
|
|
46
36
|
"clean": "aegir clean",
|
|
47
37
|
"lint": "aegir lint",
|
|
@@ -57,61 +47,61 @@
|
|
|
57
47
|
"doc-check": "aegir doc-check"
|
|
58
48
|
},
|
|
59
49
|
"dependencies": {
|
|
60
|
-
"@libp2p/crypto": "
|
|
61
|
-
"@libp2p/interface": "
|
|
62
|
-
"@libp2p/interface-internal": "
|
|
63
|
-
"@libp2p/peer-collections": "
|
|
64
|
-
"@libp2p/peer-id": "
|
|
65
|
-
"@libp2p/ping": "
|
|
66
|
-
"@libp2p/record": "
|
|
67
|
-
"@libp2p/utils": "
|
|
68
|
-
"@multiformats/multiaddr": "^12.
|
|
50
|
+
"@libp2p/crypto": "5.1.3-776cb432d",
|
|
51
|
+
"@libp2p/interface": "2.10.1-776cb432d",
|
|
52
|
+
"@libp2p/interface-internal": "2.3.13-776cb432d",
|
|
53
|
+
"@libp2p/peer-collections": "6.0.29-776cb432d",
|
|
54
|
+
"@libp2p/peer-id": "5.1.4-776cb432d",
|
|
55
|
+
"@libp2p/ping": "2.0.31-776cb432d",
|
|
56
|
+
"@libp2p/record": "4.0.6-776cb432d",
|
|
57
|
+
"@libp2p/utils": "6.6.4-776cb432d",
|
|
58
|
+
"@multiformats/multiaddr": "^12.4.0",
|
|
69
59
|
"any-signal": "^4.1.1",
|
|
70
60
|
"interface-datastore": "^8.3.1",
|
|
71
|
-
"it-all": "^3.0.
|
|
72
|
-
"it-drain": "^3.0.
|
|
73
|
-
"it-length": "^3.0.
|
|
61
|
+
"it-all": "^3.0.8",
|
|
62
|
+
"it-drain": "^3.0.9",
|
|
63
|
+
"it-length": "^3.0.8",
|
|
74
64
|
"it-length-prefixed": "^10.0.1",
|
|
75
|
-
"it-map": "^3.1.
|
|
76
|
-
"it-merge": "^3.0.
|
|
77
|
-
"it-parallel": "^3.0.
|
|
65
|
+
"it-map": "^3.1.3",
|
|
66
|
+
"it-merge": "^3.0.11",
|
|
67
|
+
"it-parallel": "^3.0.11",
|
|
78
68
|
"it-pipe": "^3.0.1",
|
|
79
|
-
"it-protobuf-stream": "^2.0.
|
|
69
|
+
"it-protobuf-stream": "^2.0.2",
|
|
80
70
|
"it-pushable": "^3.2.3",
|
|
81
|
-
"it-take": "^3.0.
|
|
71
|
+
"it-take": "^3.0.8",
|
|
82
72
|
"mortice": "^3.0.6",
|
|
83
|
-
"multiformats": "^13.3.
|
|
73
|
+
"multiformats": "^13.3.4",
|
|
84
74
|
"p-defer": "^4.0.1",
|
|
85
75
|
"p-event": "^6.0.1",
|
|
86
76
|
"progress-events": "^1.0.1",
|
|
87
77
|
"protons-runtime": "^5.5.0",
|
|
88
|
-
"race-signal": "^1.1.
|
|
78
|
+
"race-signal": "^1.1.3",
|
|
89
79
|
"uint8-varint": "^2.0.4",
|
|
90
80
|
"uint8arraylist": "^2.4.8",
|
|
91
81
|
"uint8arrays": "^5.1.0"
|
|
92
82
|
},
|
|
93
83
|
"devDependencies": {
|
|
94
|
-
"@libp2p/interface-compliance-tests": "
|
|
95
|
-
"@libp2p/logger": "
|
|
96
|
-
"@libp2p/peer-store": "
|
|
84
|
+
"@libp2p/interface-compliance-tests": "6.4.7-776cb432d",
|
|
85
|
+
"@libp2p/logger": "5.1.17-776cb432d",
|
|
86
|
+
"@libp2p/peer-store": "11.2.1-776cb432d",
|
|
97
87
|
"@types/lodash.random": "^3.2.9",
|
|
98
88
|
"@types/lodash.range": "^3.2.9",
|
|
99
|
-
"@types/sinon": "^17.0.
|
|
89
|
+
"@types/sinon": "^17.0.4",
|
|
100
90
|
"@types/which": "^3.0.4",
|
|
101
|
-
"aegir": "^
|
|
91
|
+
"aegir": "^47.0.6",
|
|
102
92
|
"benchmark": "^2.1.4",
|
|
103
93
|
"datastore-core": "^10.0.2",
|
|
104
94
|
"delay": "^6.0.0",
|
|
105
|
-
"execa": "^9.5.
|
|
106
|
-
"it-filter": "^3.1.
|
|
107
|
-
"it-last": "^3.0.
|
|
95
|
+
"execa": "^9.5.3",
|
|
96
|
+
"it-filter": "^3.1.3",
|
|
97
|
+
"it-last": "^3.0.8",
|
|
108
98
|
"it-pair": "^2.0.6",
|
|
109
99
|
"it-stream-types": "^2.0.2",
|
|
110
100
|
"lodash.random": "^3.2.0",
|
|
111
101
|
"lodash.range": "^3.2.0",
|
|
112
102
|
"p-retry": "^6.2.1",
|
|
113
103
|
"protons": "^7.6.0",
|
|
114
|
-
"sinon": "^
|
|
104
|
+
"sinon": "^20.0.0",
|
|
115
105
|
"sinon-ts": "^2.0.0",
|
|
116
106
|
"which": "^5.0.0"
|
|
117
107
|
},
|
|
@@ -281,7 +281,7 @@ export class ContentFetching {
|
|
|
281
281
|
this.log('error getting local value for %b', key, err)
|
|
282
282
|
}
|
|
283
283
|
|
|
284
|
-
const self = this
|
|
284
|
+
const self = this
|
|
285
285
|
|
|
286
286
|
const getValueQuery: QueryFunc = async function * ({ peer, signal, path }) {
|
|
287
287
|
for await (const event of self.peerRouting.getValueOrPeers(peer.id, key, {
|
|
@@ -178,7 +178,7 @@ export class ContentRouting {
|
|
|
178
178
|
const toFind = this.routingTable.kBucketSize
|
|
179
179
|
let found = 0
|
|
180
180
|
const target = key.multihash.bytes
|
|
181
|
-
const self = this
|
|
181
|
+
const self = this
|
|
182
182
|
|
|
183
183
|
this.log('findProviders %c', key)
|
|
184
184
|
|
package/src/index.ts
CHANGED
|
@@ -138,7 +138,7 @@ import { removePrivateAddressesMapper, removePublicAddressesMapper, passthroughM
|
|
|
138
138
|
import type { Libp2pEvents, ComponentLogger, TypedEventTarget, Metrics, PeerId, PeerInfo, PeerStore, RoutingOptions, PrivateKey } from '@libp2p/interface'
|
|
139
139
|
import type { AddressManager, ConnectionManager, Registrar } from '@libp2p/interface-internal'
|
|
140
140
|
import type { Ping } from '@libp2p/ping'
|
|
141
|
-
import type { AdaptiveTimeoutInit } from '@libp2p/utils/
|
|
141
|
+
import type { AdaptiveTimeoutInit } from '@libp2p/utils/adaptive-timeout'
|
|
142
142
|
import type { Datastore } from 'interface-datastore'
|
|
143
143
|
import type { CID } from 'multiformats/cid'
|
|
144
144
|
import type { ProgressEvent } from 'progress-events'
|
package/src/message/dht.ts
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
/* eslint-disable complexity */
|
|
3
|
-
/* eslint-disable @typescript-eslint/no-namespace */
|
|
4
|
-
/* eslint-disable @typescript-eslint/no-unnecessary-boolean-literal-compare */
|
|
5
|
-
/* eslint-disable @typescript-eslint/no-empty-interface */
|
|
6
|
-
|
|
7
|
-
import { type Codec, decodeMessage, type DecodeOptions, encodeMessage, enumeration, MaxLengthError, message } from 'protons-runtime'
|
|
1
|
+
import { decodeMessage, encodeMessage, enumeration, MaxLengthError, message } from 'protons-runtime'
|
|
8
2
|
import { alloc as uint8ArrayAlloc } from 'uint8arrays/alloc'
|
|
3
|
+
import type { Codec, DecodeOptions } from 'protons-runtime'
|
|
9
4
|
import type { Uint8ArrayList } from 'uint8arraylist'
|
|
10
5
|
|
|
11
6
|
export interface Record {
|
package/src/network.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InvalidParametersError, TypedEventEmitter } from '@libp2p/interface'
|
|
2
2
|
import { Libp2pRecord } from '@libp2p/record'
|
|
3
|
-
import { AdaptiveTimeout
|
|
3
|
+
import { AdaptiveTimeout } from '@libp2p/utils/adaptive-timeout'
|
|
4
4
|
import { pbStream } from 'it-protobuf-stream'
|
|
5
5
|
import { Message } from './message/dht.js'
|
|
6
6
|
import { fromPbPeerInfo } from './message/utils.js'
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
} from './query/events.js'
|
|
13
13
|
import type { DisjointPath, KadDHTComponents, QueryEvent } from './index.js'
|
|
14
14
|
import type { AbortOptions, Logger, Stream, PeerId, PeerInfo, Startable, RoutingOptions, CounterGroup } from '@libp2p/interface'
|
|
15
|
+
import type { AdaptiveTimeoutInit } from '@libp2p/utils/adaptive-timeout'
|
|
15
16
|
|
|
16
17
|
export interface NetworkInit {
|
|
17
18
|
protocol: string
|
|
@@ -21,7 +22,7 @@ export interface NetworkInit {
|
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
interface NetworkEvents {
|
|
24
|
-
|
|
25
|
+
peer: CustomEvent<PeerInfo>
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
export interface SendMessageOptions extends RoutingOptions {
|
|
@@ -190,7 +190,7 @@ export class PeerRouting {
|
|
|
190
190
|
let foundPeer = false
|
|
191
191
|
|
|
192
192
|
if (options.useNetwork !== false) {
|
|
193
|
-
const self = this
|
|
193
|
+
const self = this
|
|
194
194
|
|
|
195
195
|
const findPeerQuery: QueryFunc = async function * ({ peer, signal, path }) {
|
|
196
196
|
const request: Partial<Message> = {
|
|
@@ -242,7 +242,7 @@ export class PeerRouting {
|
|
|
242
242
|
this.log('getClosestPeers to %b', key)
|
|
243
243
|
const kadId = await convertBuffer(key)
|
|
244
244
|
const peers = new PeerDistanceList(kadId, this.routingTable.kBucketSize)
|
|
245
|
-
const self = this
|
|
245
|
+
const self = this
|
|
246
246
|
|
|
247
247
|
const getCloserPeersQuery: QueryFunc = async function * ({ peer, path, peerKadId, signal }) {
|
|
248
248
|
self.log('getClosestPeers asking %p', peer)
|
package/src/query/manager.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/* eslint-disable complexity */
|
|
2
1
|
import { setMaxListeners } from '@libp2p/interface'
|
|
3
2
|
import { createScalableCuckooFilter } from '@libp2p/utils/filters'
|
|
4
3
|
import { anySignal } from 'any-signal'
|
|
@@ -19,7 +18,7 @@ import type { ConnectionManager } from '@libp2p/interface-internal'
|
|
|
19
18
|
import type { DeferredPromise } from 'p-defer'
|
|
20
19
|
|
|
21
20
|
export interface CleanUpEvents {
|
|
22
|
-
|
|
21
|
+
cleanup: CustomEvent
|
|
23
22
|
}
|
|
24
23
|
|
|
25
24
|
export interface QueryManagerInit {
|
|
@@ -4,7 +4,7 @@ import { multiaddr } from '@multiformats/multiaddr'
|
|
|
4
4
|
import { CID } from 'multiformats/cid'
|
|
5
5
|
import * as Digest from 'multiformats/hashes/digest'
|
|
6
6
|
import type { Message } from '../../message/dht.js'
|
|
7
|
-
import type { Providers } from '../../providers'
|
|
7
|
+
import type { Providers } from '../../providers.js'
|
|
8
8
|
import type { DHTMessageHandler } from '../index.js'
|
|
9
9
|
import type { ComponentLogger, Logger, PeerId, PeerStore } from '@libp2p/interface'
|
|
10
10
|
|
package/src/rpc/index.ts
CHANGED
|
@@ -2,15 +2,19 @@ import * as lp from 'it-length-prefixed'
|
|
|
2
2
|
import { pipe } from 'it-pipe'
|
|
3
3
|
import { Message, MessageType } from '../message/dht.js'
|
|
4
4
|
import { AddProviderHandler } from './handlers/add-provider.js'
|
|
5
|
-
import { FindNodeHandler
|
|
6
|
-
import { GetProvidersHandler
|
|
7
|
-
import { GetValueHandler
|
|
5
|
+
import { FindNodeHandler } from './handlers/find-node.js'
|
|
6
|
+
import { GetProvidersHandler } from './handlers/get-providers.js'
|
|
7
|
+
import { GetValueHandler } from './handlers/get-value.js'
|
|
8
8
|
import { PingHandler } from './handlers/ping.js'
|
|
9
|
-
import { PutValueHandler
|
|
9
|
+
import { PutValueHandler } from './handlers/put-value.js'
|
|
10
10
|
import type { PeerInfoMapper, Validators } from '../index.js'
|
|
11
|
-
import type { PeerRouting } from '../peer-routing'
|
|
12
|
-
import type { Providers } from '../providers'
|
|
13
|
-
import type {
|
|
11
|
+
import type { PeerRouting } from '../peer-routing/index.js'
|
|
12
|
+
import type { Providers } from '../providers.js'
|
|
13
|
+
import type { FindNodeHandlerComponents } from './handlers/find-node.js'
|
|
14
|
+
import type { GetProvidersHandlerComponents } from './handlers/get-providers.js'
|
|
15
|
+
import type { GetValueHandlerComponents } from './handlers/get-value.js'
|
|
16
|
+
import type { PutValueHandlerComponents } from './handlers/put-value.js'
|
|
17
|
+
import type { RoutingTable } from '../routing-table/index.js'
|
|
14
18
|
import type { CounterGroup, Logger, Metrics, PeerId, IncomingStreamData } from '@libp2p/interface'
|
|
15
19
|
|
|
16
20
|
export interface DHTMessageHandler {
|
|
@@ -94,7 +98,7 @@ export class RPC {
|
|
|
94
98
|
const { stream, connection } = data
|
|
95
99
|
const peerId = connection.remotePeer
|
|
96
100
|
|
|
97
|
-
const self = this
|
|
101
|
+
const self = this
|
|
98
102
|
|
|
99
103
|
await pipe(
|
|
100
104
|
stream,
|
package/src/topology-listener.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypedEventEmitter } from '@libp2p/interface'
|
|
2
|
-
import type { KadDHTComponents } from '.'
|
|
2
|
+
import type { KadDHTComponents } from './index.js'
|
|
3
3
|
import type { Logger, PeerId, Startable } from '@libp2p/interface'
|
|
4
4
|
|
|
5
5
|
export interface TopologyListenerInit {
|
|
@@ -8,7 +8,7 @@ export interface TopologyListenerInit {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export interface TopologyListenerEvents {
|
|
11
|
-
|
|
11
|
+
peer: CustomEvent<PeerId>
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
/**
|
package/dist/typedoc-urls.json
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"codec": "https://libp2p.github.io/js-libp2p/functions/_libp2p_kad_dht.MessageType.codec.html",
|
|
3
|
-
"EventTypes": "https://libp2p.github.io/js-libp2p/enums/_libp2p_kad_dht.EventTypes.html",
|
|
4
|
-
".:EventTypes": "https://libp2p.github.io/js-libp2p/enums/_libp2p_kad_dht.EventTypes.html",
|
|
5
|
-
"MessageType": "https://libp2p.github.io/js-libp2p/enums/_libp2p_kad_dht.MessageType-1.html",
|
|
6
|
-
"AddPeerEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.AddPeerEvent.html",
|
|
7
|
-
".:AddPeerEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.AddPeerEvent.html",
|
|
8
|
-
"DHTRecord": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.DHTRecord.html",
|
|
9
|
-
".:DHTRecord": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.DHTRecord.html",
|
|
10
|
-
"DialPeerEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.DialPeerEvent.html",
|
|
11
|
-
".:DialPeerEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.DialPeerEvent.html",
|
|
12
|
-
"DisjointPath": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.DisjointPath.html",
|
|
13
|
-
".:DisjointPath": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.DisjointPath.html",
|
|
14
|
-
"FinalPeerEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.FinalPeerEvent.html",
|
|
15
|
-
".:FinalPeerEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.FinalPeerEvent.html",
|
|
16
|
-
"KadDHT": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.KadDHT.html",
|
|
17
|
-
".:KadDHT": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.KadDHT.html",
|
|
18
|
-
"KadDHTComponents": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.KadDHTComponents.html",
|
|
19
|
-
".:KadDHTComponents": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.KadDHTComponents.html",
|
|
20
|
-
"KadDHTInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.KadDHTInit.html",
|
|
21
|
-
".:KadDHTInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.KadDHTInit.html",
|
|
22
|
-
"PathEndedEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.PathEndedEvent.html",
|
|
23
|
-
".:PathEndedEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.PathEndedEvent.html",
|
|
24
|
-
"PeerInfoMapper": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.PeerInfoMapper.html",
|
|
25
|
-
".:PeerInfoMapper": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.PeerInfoMapper.html",
|
|
26
|
-
"PeerResponseEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.PeerResponseEvent.html",
|
|
27
|
-
".:PeerResponseEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.PeerResponseEvent.html",
|
|
28
|
-
"ProviderEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ProviderEvent.html",
|
|
29
|
-
".:ProviderEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ProviderEvent.html",
|
|
30
|
-
"ProvidersInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ProvidersInit.html",
|
|
31
|
-
".:ProvidersInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ProvidersInit.html",
|
|
32
|
-
"QueryErrorEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.QueryErrorEvent.html",
|
|
33
|
-
".:QueryErrorEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.QueryErrorEvent.html",
|
|
34
|
-
"ReProvideInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ReProvideInit.html",
|
|
35
|
-
".:ReProvideInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ReProvideInit.html",
|
|
36
|
-
"RoutingTable": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.RoutingTable.html",
|
|
37
|
-
".:RoutingTable": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.RoutingTable.html",
|
|
38
|
-
"SelectFn": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.SelectFn.html",
|
|
39
|
-
".:SelectFn": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.SelectFn.html",
|
|
40
|
-
"SendQueryEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.SendQueryEvent.html",
|
|
41
|
-
".:SendQueryEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.SendQueryEvent.html",
|
|
42
|
-
"SingleKadDHT": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.SingleKadDHT.html",
|
|
43
|
-
".:SingleKadDHT": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.SingleKadDHT.html",
|
|
44
|
-
"ValidateFn": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ValidateFn.html",
|
|
45
|
-
".:ValidateFn": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ValidateFn.html",
|
|
46
|
-
"ValueEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ValueEvent.html",
|
|
47
|
-
".:ValueEvent": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_kad_dht.ValueEvent.html",
|
|
48
|
-
"DHTProgressEvents": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.DHTProgressEvents.html",
|
|
49
|
-
".:DHTProgressEvents": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.DHTProgressEvents.html",
|
|
50
|
-
"MessageName": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.MessageName.html",
|
|
51
|
-
".:MessageName": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.MessageName.html",
|
|
52
|
-
"QueryEvent": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.QueryEvent.html",
|
|
53
|
-
".:QueryEvent": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.QueryEvent.html",
|
|
54
|
-
"Selectors": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.Selectors.html",
|
|
55
|
-
".:Selectors": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.Selectors.html",
|
|
56
|
-
"Validators": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.Validators.html",
|
|
57
|
-
".:Validators": "https://libp2p.github.io/js-libp2p/types/_libp2p_kad_dht.Validators.html",
|
|
58
|
-
"kadDHT": "https://libp2p.github.io/js-libp2p/functions/_libp2p_kad_dht.kadDHT-1.html",
|
|
59
|
-
".:kadDHT": "https://libp2p.github.io/js-libp2p/functions/_libp2p_kad_dht.kadDHT-1.html",
|
|
60
|
-
"passthroughMapper": "https://libp2p.github.io/js-libp2p/functions/_libp2p_kad_dht.passthroughMapper.html",
|
|
61
|
-
"removePrivateAddressesMapper": "https://libp2p.github.io/js-libp2p/functions/_libp2p_kad_dht.removePrivateAddressesMapper.html",
|
|
62
|
-
"removePublicAddressesMapper": "https://libp2p.github.io/js-libp2p/functions/_libp2p_kad_dht.removePublicAddressesMapper.html"
|
|
63
|
-
}
|