libp2p
Version:
JavaScript implementation of libp2p, a modular peer to peer network stack
10 lines • 408 B
JavaScript
export * from './constants.defaults.js';
/**
* @see https://libp2p.github.io/js-libp2p/interfaces/index._internal_.ConnectionManagerConfig.html#maxConnections
*/
export const MAX_CONNECTIONS = 100;
/**
* @see https://libp2p.github.io/js-libp2p/interfaces/index._internal_.ConnectionManagerConfig.html#maxParallelDials
*/
export const MAX_PARALLEL_DIALS = 50;
//# sourceMappingURL=constants.browser.js.map