You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/dialer/index.js
+11-11
Original file line number
Diff line number
Diff line change
@@ -38,9 +38,9 @@ const {
38
38
*
39
39
* @typedef {Object} DialerOptions
40
40
* @property {(addresses: Address[]) => Address[]} [options.addressSorter = publicAddressesFirst] - Sort the known addresses of a peer before trying to dial.
41
-
* @property {number} [concurrency = MAX_PARALLEL_DIALS] - Number of max concurrent dials.
42
-
* @property {number} [perPeerLimit = MAX_PER_PEER_DIALS] - Number of max concurrent dials per peer.
43
-
* @property {number} [timeout = DIAL_TIMEOUT] - How long a dial attempt is allowed to take.
41
+
* @property {number} [maxParallelDials = MAX_PARALLEL_DIALS] - Number of max concurrent dials.
42
+
* @property {number} [maxDialsPerPeer = MAX_PER_PEER_DIALS] - Number of max concurrent dials per peer.
43
+
* @property {number} [dialTimeout = DIAL_TIMEOUT] - How long a dial attempt is allowed to take.
44
44
* @property {Record<string, Resolver>} [resolvers = {}] - multiaddr resolvers to use when dialing
0 commit comments