libp2p 0.46.21 → 1.0.0-551622a96
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/README.md +51 -47
- package/dist/index.min.js +40 -28
- package/dist/src/address-manager/index.d.ts +4 -5
- package/dist/src/address-manager/index.d.ts.map +1 -1
- package/dist/src/address-manager/index.js +3 -3
- package/dist/src/address-manager/index.js.map +1 -1
- package/dist/src/components.d.ts +4 -15
- package/dist/src/components.d.ts.map +1 -1
- package/dist/src/components.js +2 -2
- package/dist/src/components.js.map +1 -1
- package/dist/src/config/connection-gater.browser.d.ts +1 -1
- package/dist/src/config/connection-gater.browser.d.ts.map +1 -1
- package/dist/src/config/connection-gater.browser.js.map +1 -1
- package/dist/src/config/connection-gater.d.ts +1 -1
- package/dist/src/config/connection-gater.d.ts.map +1 -1
- package/dist/src/config.d.ts.map +1 -1
- package/dist/src/config.js +1 -2
- package/dist/src/config.js.map +1 -1
- package/dist/src/connection/index.d.ts +4 -6
- package/dist/src/connection/index.d.ts.map +1 -1
- package/dist/src/connection/index.js +11 -13
- package/dist/src/connection/index.js.map +1 -1
- package/dist/src/connection-manager/auto-dial.d.ts +3 -6
- package/dist/src/connection-manager/auto-dial.d.ts.map +1 -1
- package/dist/src/connection-manager/auto-dial.js +21 -21
- package/dist/src/connection-manager/auto-dial.js.map +1 -1
- package/dist/src/connection-manager/connection-pruner.d.ts +3 -5
- package/dist/src/connection-manager/connection-pruner.d.ts.map +1 -1
- package/dist/src/connection-manager/connection-pruner.js +8 -8
- package/dist/src/connection-manager/connection-pruner.js.map +1 -1
- package/dist/src/connection-manager/constants.defaults.d.ts +0 -4
- package/dist/src/connection-manager/constants.defaults.d.ts.map +1 -1
- package/dist/src/connection-manager/constants.defaults.js +0 -4
- package/dist/src/connection-manager/constants.defaults.js.map +1 -1
- package/dist/src/connection-manager/dial-queue.d.ts +3 -10
- package/dist/src/connection-manager/dial-queue.d.ts.map +1 -1
- package/dist/src/connection-manager/dial-queue.js +30 -38
- package/dist/src/connection-manager/dial-queue.js.map +1 -1
- package/dist/src/connection-manager/index.d.ts +3 -18
- package/dist/src/connection-manager/index.d.ts.map +1 -1
- package/dist/src/connection-manager/index.js +17 -18
- package/dist/src/connection-manager/index.js.map +1 -1
- package/dist/src/connection-manager/utils.js +1 -1
- package/dist/src/connection-manager/utils.js.map +1 -1
- package/dist/src/content-routing/index.d.ts +1 -5
- package/dist/src/content-routing/index.d.ts.map +1 -1
- package/dist/src/content-routing/index.js +2 -2
- package/dist/src/content-routing/index.js.map +1 -1
- package/dist/src/content-routing/utils.d.ts +1 -2
- package/dist/src/content-routing/utils.d.ts.map +1 -1
- package/dist/src/content-routing/utils.js +1 -1
- package/dist/src/content-routing/utils.js.map +1 -1
- package/dist/src/errors.d.ts +0 -2
- package/dist/src/errors.d.ts.map +1 -1
- package/dist/src/errors.js +0 -2
- package/dist/src/errors.js.map +1 -1
- package/dist/src/get-peer.d.ts +1 -1
- package/dist/src/get-peer.d.ts.map +1 -1
- package/dist/src/get-peer.js +1 -5
- package/dist/src/get-peer.js.map +1 -1
- package/dist/src/index.d.ts +5 -16
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/libp2p.d.ts +4 -12
- package/dist/src/libp2p.d.ts.map +1 -1
- package/dist/src/libp2p.js +31 -65
- package/dist/src/libp2p.js.map +1 -1
- package/dist/src/peer-routing.d.ts +6 -6
- package/dist/src/peer-routing.d.ts.map +1 -1
- package/dist/src/peer-routing.js +12 -9
- package/dist/src/peer-routing.js.map +1 -1
- package/dist/src/registrar.d.ts +5 -7
- package/dist/src/registrar.d.ts.map +1 -1
- package/dist/src/registrar.js +4 -4
- package/dist/src/registrar.js.map +1 -1
- package/dist/src/transport-manager.d.ts +5 -9
- package/dist/src/transport-manager.d.ts.map +1 -1
- package/dist/src/transport-manager.js +12 -13
- package/dist/src/transport-manager.js.map +1 -1
- package/dist/src/upgrader.d.ts +8 -19
- package/dist/src/upgrader.d.ts.map +1 -1
- package/dist/src/upgrader.js +75 -38
- package/dist/src/upgrader.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +1 -1
- package/dist/src/version.js.map +1 -1
- package/package.json +37 -106
- package/src/address-manager/index.ts +6 -9
- package/src/components.ts +5 -16
- package/src/config/connection-gater.browser.ts +1 -1
- package/src/config/connection-gater.ts +1 -1
- package/src/config.ts +1 -2
- package/src/connection/index.ts +12 -17
- package/src/connection-manager/auto-dial.ts +23 -26
- package/src/connection-manager/connection-pruner.ts +10 -12
- package/src/connection-manager/constants.defaults.ts +0 -5
- package/src/connection-manager/dial-queue.ts +31 -46
- package/src/connection-manager/index.ts +19 -36
- package/src/connection-manager/utils.ts +1 -1
- package/src/content-routing/index.ts +3 -7
- package/src/content-routing/utils.ts +2 -3
- package/src/errors.ts +0 -2
- package/src/get-peer.ts +2 -7
- package/src/index.ts +6 -17
- package/src/libp2p.ts +32 -80
- package/src/peer-routing.ts +16 -15
- package/src/registrar.ts +8 -12
- package/src/transport-manager.ts +15 -22
- package/src/upgrader.ts +110 -64
- package/src/version.ts +1 -1
- package/dist/src/autonat/constants.d.ts +0 -18
- package/dist/src/autonat/constants.d.ts.map +0 -1
- package/dist/src/autonat/constants.js +0 -18
- package/dist/src/autonat/constants.js.map +0 -1
- package/dist/src/autonat/index.d.ts +0 -62
- package/dist/src/autonat/index.d.ts.map +0 -1
- package/dist/src/autonat/index.js +0 -447
- package/dist/src/autonat/index.js.map +0 -1
- package/dist/src/autonat/pb/index.d.ts +0 -57
- package/dist/src/autonat/pb/index.d.ts.map +0 -1
- package/dist/src/autonat/pb/index.js +0 -250
- package/dist/src/autonat/pb/index.js.map +0 -1
- package/dist/src/circuit-relay/constants.d.ts +0 -50
- package/dist/src/circuit-relay/constants.d.ts.map +0 -1
- package/dist/src/circuit-relay/constants.js +0 -56
- package/dist/src/circuit-relay/constants.js.map +0 -1
- package/dist/src/circuit-relay/index.d.ts +0 -55
- package/dist/src/circuit-relay/index.d.ts.map +0 -1
- package/dist/src/circuit-relay/index.js +0 -38
- package/dist/src/circuit-relay/index.js.map +0 -1
- package/dist/src/circuit-relay/pb/index.d.ts +0 -93
- package/dist/src/circuit-relay/pb/index.d.ts.map +0 -1
- package/dist/src/circuit-relay/pb/index.js +0 -425
- package/dist/src/circuit-relay/pb/index.js.map +0 -1
- package/dist/src/circuit-relay/server/advert-service.d.ts +0 -43
- package/dist/src/circuit-relay/server/advert-service.d.ts.map +0 -1
- package/dist/src/circuit-relay/server/advert-service.js +0 -73
- package/dist/src/circuit-relay/server/advert-service.js.map +0 -1
- package/dist/src/circuit-relay/server/index.d.ts +0 -65
- package/dist/src/circuit-relay/server/index.d.ts.map +0 -1
- package/dist/src/circuit-relay/server/index.js +0 -312
- package/dist/src/circuit-relay/server/index.js.map +0 -1
- package/dist/src/circuit-relay/server/reservation-store.d.ts +0 -49
- package/dist/src/circuit-relay/server/reservation-store.d.ts.map +0 -1
- package/dist/src/circuit-relay/server/reservation-store.js +0 -65
- package/dist/src/circuit-relay/server/reservation-store.js.map +0 -1
- package/dist/src/circuit-relay/server/reservation-voucher.d.ts +0 -18
- package/dist/src/circuit-relay/server/reservation-voucher.d.ts.map +0 -1
- package/dist/src/circuit-relay/server/reservation-voucher.js +0 -36
- package/dist/src/circuit-relay/server/reservation-voucher.js.map +0 -1
- package/dist/src/circuit-relay/transport/discovery.d.ts +0 -45
- package/dist/src/circuit-relay/transport/discovery.d.ts.map +0 -1
- package/dist/src/circuit-relay/transport/discovery.js +0 -97
- package/dist/src/circuit-relay/transport/discovery.js.map +0 -1
- package/dist/src/circuit-relay/transport/index.d.ts +0 -57
- package/dist/src/circuit-relay/transport/index.d.ts.map +0 -1
- package/dist/src/circuit-relay/transport/index.js +0 -276
- package/dist/src/circuit-relay/transport/index.js.map +0 -1
- package/dist/src/circuit-relay/transport/listener.d.ts +0 -9
- package/dist/src/circuit-relay/transport/listener.d.ts.map +0 -1
- package/dist/src/circuit-relay/transport/listener.js +0 -66
- package/dist/src/circuit-relay/transport/listener.js.map +0 -1
- package/dist/src/circuit-relay/transport/reservation-store.d.ts +0 -72
- package/dist/src/circuit-relay/transport/reservation-store.d.ts.map +0 -1
- package/dist/src/circuit-relay/transport/reservation-store.js +0 -209
- package/dist/src/circuit-relay/transport/reservation-store.js.map +0 -1
- package/dist/src/circuit-relay/utils.d.ts +0 -13
- package/dist/src/circuit-relay/utils.d.ts.map +0 -1
- package/dist/src/circuit-relay/utils.js +0 -108
- package/dist/src/circuit-relay/utils.js.map +0 -1
- package/dist/src/dcutr/dcutr.d.ts +0 -43
- package/dist/src/dcutr/dcutr.d.ts.map +0 -1
- package/dist/src/dcutr/dcutr.js +0 -313
- package/dist/src/dcutr/dcutr.js.map +0 -1
- package/dist/src/dcutr/index.d.ts +0 -92
- package/dist/src/dcutr/index.d.ts.map +0 -1
- package/dist/src/dcutr/index.js +0 -63
- package/dist/src/dcutr/index.js.map +0 -1
- package/dist/src/dcutr/pb/message.d.ts +0 -20
- package/dist/src/dcutr/pb/message.d.ts.map +0 -1
- package/dist/src/dcutr/pb/message.js +0 -77
- package/dist/src/dcutr/pb/message.js.map +0 -1
- package/dist/src/dcutr/utils.d.ts +0 -8
- package/dist/src/dcutr/utils.d.ts.map +0 -1
- package/dist/src/dcutr/utils.js +0 -27
- package/dist/src/dcutr/utils.js.map +0 -1
- package/dist/src/fetch/constants.d.ts +0 -3
- package/dist/src/fetch/constants.d.ts.map +0 -1
- package/dist/src/fetch/constants.js +0 -4
- package/dist/src/fetch/constants.js.map +0 -1
- package/dist/src/fetch/index.d.ts +0 -61
- package/dist/src/fetch/index.d.ts.map +0 -1
- package/dist/src/fetch/index.js +0 -205
- package/dist/src/fetch/index.js.map +0 -1
- package/dist/src/fetch/pb/proto.d.ts +0 -28
- package/dist/src/fetch/pb/proto.d.ts.map +0 -1
- package/dist/src/fetch/pb/proto.js +0 -120
- package/dist/src/fetch/pb/proto.js.map +0 -1
- package/dist/src/identify/consts.d.ts +0 -10
- package/dist/src/identify/consts.d.ts.map +0 -1
- package/dist/src/identify/consts.js +0 -11
- package/dist/src/identify/consts.js.map +0 -1
- package/dist/src/identify/identify.d.ts +0 -54
- package/dist/src/identify/identify.d.ts.map +0 -1
- package/dist/src/identify/identify.js +0 -447
- package/dist/src/identify/identify.js.map +0 -1
- package/dist/src/identify/index.d.ts +0 -72
- package/dist/src/identify/index.d.ts.map +0 -1
- package/dist/src/identify/index.js +0 -15
- package/dist/src/identify/index.js.map +0 -1
- package/dist/src/identify/pb/message.d.ts +0 -17
- package/dist/src/identify/pb/message.d.ts.map +0 -1
- package/dist/src/identify/pb/message.js +0 -98
- package/dist/src/identify/pb/message.js.map +0 -1
- package/dist/src/insecure/index.d.ts +0 -26
- package/dist/src/insecure/index.d.ts.map +0 -1
- package/dist/src/insecure/index.js +0 -110
- package/dist/src/insecure/index.js.map +0 -1
- package/dist/src/insecure/pb/proto.d.ts +0 -30
- package/dist/src/insecure/pb/proto.d.ts.map +0 -1
- package/dist/src/insecure/pb/proto.js +0 -127
- package/dist/src/insecure/pb/proto.js.map +0 -1
- package/dist/src/ping/constants.d.ts +0 -9
- package/dist/src/ping/constants.d.ts.map +0 -1
- package/dist/src/ping/constants.js +0 -15
- package/dist/src/ping/constants.js.map +0 -1
- package/dist/src/ping/index.d.ts +0 -24
- package/dist/src/ping/index.d.ts.map +0 -1
- package/dist/src/ping/index.js +0 -115
- package/dist/src/ping/index.js.map +0 -1
- package/dist/src/pnet/crypto.d.ts +0 -18
- package/dist/src/pnet/crypto.d.ts.map +0 -1
- package/dist/src/pnet/crypto.js +0 -60
- package/dist/src/pnet/crypto.js.map +0 -1
- package/dist/src/pnet/errors.d.ts +0 -6
- package/dist/src/pnet/errors.d.ts.map +0 -1
- package/dist/src/pnet/errors.js +0 -6
- package/dist/src/pnet/errors.js.map +0 -1
- package/dist/src/pnet/index.d.ts +0 -31
- package/dist/src/pnet/index.d.ts.map +0 -1
- package/dist/src/pnet/index.js +0 -97
- package/dist/src/pnet/index.js.map +0 -1
- package/dist/src/pnet/key-generator.d.ts +0 -11
- package/dist/src/pnet/key-generator.d.ts.map +0 -1
- package/dist/src/pnet/key-generator.js +0 -22
- package/dist/src/pnet/key-generator.js.map +0 -1
- package/dist/src/upnp-nat/index.d.ts +0 -71
- package/dist/src/upnp-nat/index.d.ts.map +0 -1
- package/dist/src/upnp-nat/index.js +0 -136
- package/dist/src/upnp-nat/index.js.map +0 -1
- package/dist/src/utils/peer-job-queue.d.ts +0 -33
- package/dist/src/utils/peer-job-queue.d.ts.map +0 -1
- package/dist/src/utils/peer-job-queue.js +0 -82
- package/dist/src/utils/peer-job-queue.js.map +0 -1
- package/dist/typedoc-urls.json +0 -71
- package/src/autonat/constants.ts +0 -19
- package/src/autonat/index.ts +0 -597
- package/src/autonat/pb/index.proto +0 -35
- package/src/autonat/pb/index.ts +0 -320
- package/src/circuit-relay/constants.ts +0 -72
- package/src/circuit-relay/index.ts +0 -59
- package/src/circuit-relay/pb/index.proto +0 -67
- package/src/circuit-relay/pb/index.ts +0 -539
- package/src/circuit-relay/server/advert-service.ts +0 -108
- package/src/circuit-relay/server/index.ts +0 -443
- package/src/circuit-relay/server/reservation-store.ts +0 -116
- package/src/circuit-relay/server/reservation-voucher.ts +0 -51
- package/src/circuit-relay/transport/discovery.ts +0 -136
- package/src/circuit-relay/transport/index.ts +0 -396
- package/src/circuit-relay/transport/listener.ts +0 -97
- package/src/circuit-relay/transport/reservation-store.ts +0 -312
- package/src/circuit-relay/utils.ts +0 -136
- package/src/dcutr/dcutr.ts +0 -378
- package/src/dcutr/index.ts +0 -102
- package/src/dcutr/pb/message.proto +0 -12
- package/src/dcutr/pb/message.ts +0 -96
- package/src/dcutr/utils.ts +0 -33
- package/src/fetch/README.md +0 -41
- package/src/fetch/constants.ts +0 -3
- package/src/fetch/index.ts +0 -315
- package/src/fetch/pb/proto.proto +0 -15
- package/src/fetch/pb/proto.ts +0 -153
- package/src/identify/README.md +0 -13
- package/src/identify/consts.ts +0 -12
- package/src/identify/identify.ts +0 -561
- package/src/identify/index.ts +0 -90
- package/src/identify/pb/message.proto +0 -30
- package/src/identify/pb/message.ts +0 -126
- package/src/insecure/index.ts +0 -138
- package/src/insecure/pb/proto.proto +0 -18
- package/src/insecure/pb/proto.ts +0 -161
- package/src/ping/constants.ts +0 -15
- package/src/ping/index.ts +0 -170
- package/src/pnet/README.md +0 -68
- package/src/pnet/crypto.ts +0 -67
- package/src/pnet/errors.ts +0 -5
- package/src/pnet/index.ts +0 -126
- package/src/pnet/key-generator.ts +0 -23
- package/src/upnp-nat/index.ts +0 -212
- package/src/utils/peer-job-queue.ts +0 -119
|
@@ -1,250 +0,0 @@
|
|
|
1
|
-
/* eslint-disable import/export */
|
|
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
|
-
import { enumeration, encodeMessage, decodeMessage, message } from 'protons-runtime';
|
|
7
|
-
export var Message;
|
|
8
|
-
(function (Message) {
|
|
9
|
-
let MessageType;
|
|
10
|
-
(function (MessageType) {
|
|
11
|
-
MessageType["DIAL"] = "DIAL";
|
|
12
|
-
MessageType["DIAL_RESPONSE"] = "DIAL_RESPONSE";
|
|
13
|
-
})(MessageType = Message.MessageType || (Message.MessageType = {}));
|
|
14
|
-
let __MessageTypeValues;
|
|
15
|
-
(function (__MessageTypeValues) {
|
|
16
|
-
__MessageTypeValues[__MessageTypeValues["DIAL"] = 0] = "DIAL";
|
|
17
|
-
__MessageTypeValues[__MessageTypeValues["DIAL_RESPONSE"] = 1] = "DIAL_RESPONSE";
|
|
18
|
-
})(__MessageTypeValues || (__MessageTypeValues = {}));
|
|
19
|
-
(function (MessageType) {
|
|
20
|
-
MessageType.codec = () => {
|
|
21
|
-
return enumeration(__MessageTypeValues);
|
|
22
|
-
};
|
|
23
|
-
})(MessageType = Message.MessageType || (Message.MessageType = {}));
|
|
24
|
-
let ResponseStatus;
|
|
25
|
-
(function (ResponseStatus) {
|
|
26
|
-
ResponseStatus["OK"] = "OK";
|
|
27
|
-
ResponseStatus["E_DIAL_ERROR"] = "E_DIAL_ERROR";
|
|
28
|
-
ResponseStatus["E_DIAL_REFUSED"] = "E_DIAL_REFUSED";
|
|
29
|
-
ResponseStatus["E_BAD_REQUEST"] = "E_BAD_REQUEST";
|
|
30
|
-
ResponseStatus["E_INTERNAL_ERROR"] = "E_INTERNAL_ERROR";
|
|
31
|
-
})(ResponseStatus = Message.ResponseStatus || (Message.ResponseStatus = {}));
|
|
32
|
-
let __ResponseStatusValues;
|
|
33
|
-
(function (__ResponseStatusValues) {
|
|
34
|
-
__ResponseStatusValues[__ResponseStatusValues["OK"] = 0] = "OK";
|
|
35
|
-
__ResponseStatusValues[__ResponseStatusValues["E_DIAL_ERROR"] = 100] = "E_DIAL_ERROR";
|
|
36
|
-
__ResponseStatusValues[__ResponseStatusValues["E_DIAL_REFUSED"] = 101] = "E_DIAL_REFUSED";
|
|
37
|
-
__ResponseStatusValues[__ResponseStatusValues["E_BAD_REQUEST"] = 200] = "E_BAD_REQUEST";
|
|
38
|
-
__ResponseStatusValues[__ResponseStatusValues["E_INTERNAL_ERROR"] = 300] = "E_INTERNAL_ERROR";
|
|
39
|
-
})(__ResponseStatusValues || (__ResponseStatusValues = {}));
|
|
40
|
-
(function (ResponseStatus) {
|
|
41
|
-
ResponseStatus.codec = () => {
|
|
42
|
-
return enumeration(__ResponseStatusValues);
|
|
43
|
-
};
|
|
44
|
-
})(ResponseStatus = Message.ResponseStatus || (Message.ResponseStatus = {}));
|
|
45
|
-
let PeerInfo;
|
|
46
|
-
(function (PeerInfo) {
|
|
47
|
-
let _codec;
|
|
48
|
-
PeerInfo.codec = () => {
|
|
49
|
-
if (_codec == null) {
|
|
50
|
-
_codec = message((obj, w, opts = {}) => {
|
|
51
|
-
if (opts.lengthDelimited !== false) {
|
|
52
|
-
w.fork();
|
|
53
|
-
}
|
|
54
|
-
if (obj.id != null) {
|
|
55
|
-
w.uint32(10);
|
|
56
|
-
w.bytes(obj.id);
|
|
57
|
-
}
|
|
58
|
-
if (obj.addrs != null) {
|
|
59
|
-
for (const value of obj.addrs) {
|
|
60
|
-
w.uint32(18);
|
|
61
|
-
w.bytes(value);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
if (opts.lengthDelimited !== false) {
|
|
65
|
-
w.ldelim();
|
|
66
|
-
}
|
|
67
|
-
}, (reader, length) => {
|
|
68
|
-
const obj = {
|
|
69
|
-
addrs: []
|
|
70
|
-
};
|
|
71
|
-
const end = length == null ? reader.len : reader.pos + length;
|
|
72
|
-
while (reader.pos < end) {
|
|
73
|
-
const tag = reader.uint32();
|
|
74
|
-
switch (tag >>> 3) {
|
|
75
|
-
case 1:
|
|
76
|
-
obj.id = reader.bytes();
|
|
77
|
-
break;
|
|
78
|
-
case 2:
|
|
79
|
-
obj.addrs.push(reader.bytes());
|
|
80
|
-
break;
|
|
81
|
-
default:
|
|
82
|
-
reader.skipType(tag & 7);
|
|
83
|
-
break;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
return obj;
|
|
87
|
-
});
|
|
88
|
-
}
|
|
89
|
-
return _codec;
|
|
90
|
-
};
|
|
91
|
-
PeerInfo.encode = (obj) => {
|
|
92
|
-
return encodeMessage(obj, PeerInfo.codec());
|
|
93
|
-
};
|
|
94
|
-
PeerInfo.decode = (buf) => {
|
|
95
|
-
return decodeMessage(buf, PeerInfo.codec());
|
|
96
|
-
};
|
|
97
|
-
})(PeerInfo = Message.PeerInfo || (Message.PeerInfo = {}));
|
|
98
|
-
let Dial;
|
|
99
|
-
(function (Dial) {
|
|
100
|
-
let _codec;
|
|
101
|
-
Dial.codec = () => {
|
|
102
|
-
if (_codec == null) {
|
|
103
|
-
_codec = message((obj, w, opts = {}) => {
|
|
104
|
-
if (opts.lengthDelimited !== false) {
|
|
105
|
-
w.fork();
|
|
106
|
-
}
|
|
107
|
-
if (obj.peer != null) {
|
|
108
|
-
w.uint32(10);
|
|
109
|
-
Message.PeerInfo.codec().encode(obj.peer, w);
|
|
110
|
-
}
|
|
111
|
-
if (opts.lengthDelimited !== false) {
|
|
112
|
-
w.ldelim();
|
|
113
|
-
}
|
|
114
|
-
}, (reader, length) => {
|
|
115
|
-
const obj = {};
|
|
116
|
-
const end = length == null ? reader.len : reader.pos + length;
|
|
117
|
-
while (reader.pos < end) {
|
|
118
|
-
const tag = reader.uint32();
|
|
119
|
-
switch (tag >>> 3) {
|
|
120
|
-
case 1:
|
|
121
|
-
obj.peer = Message.PeerInfo.codec().decode(reader, reader.uint32());
|
|
122
|
-
break;
|
|
123
|
-
default:
|
|
124
|
-
reader.skipType(tag & 7);
|
|
125
|
-
break;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
return obj;
|
|
129
|
-
});
|
|
130
|
-
}
|
|
131
|
-
return _codec;
|
|
132
|
-
};
|
|
133
|
-
Dial.encode = (obj) => {
|
|
134
|
-
return encodeMessage(obj, Dial.codec());
|
|
135
|
-
};
|
|
136
|
-
Dial.decode = (buf) => {
|
|
137
|
-
return decodeMessage(buf, Dial.codec());
|
|
138
|
-
};
|
|
139
|
-
})(Dial = Message.Dial || (Message.Dial = {}));
|
|
140
|
-
let DialResponse;
|
|
141
|
-
(function (DialResponse) {
|
|
142
|
-
let _codec;
|
|
143
|
-
DialResponse.codec = () => {
|
|
144
|
-
if (_codec == null) {
|
|
145
|
-
_codec = message((obj, w, opts = {}) => {
|
|
146
|
-
if (opts.lengthDelimited !== false) {
|
|
147
|
-
w.fork();
|
|
148
|
-
}
|
|
149
|
-
if (obj.status != null) {
|
|
150
|
-
w.uint32(8);
|
|
151
|
-
Message.ResponseStatus.codec().encode(obj.status, w);
|
|
152
|
-
}
|
|
153
|
-
if (obj.statusText != null) {
|
|
154
|
-
w.uint32(18);
|
|
155
|
-
w.string(obj.statusText);
|
|
156
|
-
}
|
|
157
|
-
if (obj.addr != null) {
|
|
158
|
-
w.uint32(26);
|
|
159
|
-
w.bytes(obj.addr);
|
|
160
|
-
}
|
|
161
|
-
if (opts.lengthDelimited !== false) {
|
|
162
|
-
w.ldelim();
|
|
163
|
-
}
|
|
164
|
-
}, (reader, length) => {
|
|
165
|
-
const obj = {};
|
|
166
|
-
const end = length == null ? reader.len : reader.pos + length;
|
|
167
|
-
while (reader.pos < end) {
|
|
168
|
-
const tag = reader.uint32();
|
|
169
|
-
switch (tag >>> 3) {
|
|
170
|
-
case 1:
|
|
171
|
-
obj.status = Message.ResponseStatus.codec().decode(reader);
|
|
172
|
-
break;
|
|
173
|
-
case 2:
|
|
174
|
-
obj.statusText = reader.string();
|
|
175
|
-
break;
|
|
176
|
-
case 3:
|
|
177
|
-
obj.addr = reader.bytes();
|
|
178
|
-
break;
|
|
179
|
-
default:
|
|
180
|
-
reader.skipType(tag & 7);
|
|
181
|
-
break;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
return obj;
|
|
185
|
-
});
|
|
186
|
-
}
|
|
187
|
-
return _codec;
|
|
188
|
-
};
|
|
189
|
-
DialResponse.encode = (obj) => {
|
|
190
|
-
return encodeMessage(obj, DialResponse.codec());
|
|
191
|
-
};
|
|
192
|
-
DialResponse.decode = (buf) => {
|
|
193
|
-
return decodeMessage(buf, DialResponse.codec());
|
|
194
|
-
};
|
|
195
|
-
})(DialResponse = Message.DialResponse || (Message.DialResponse = {}));
|
|
196
|
-
let _codec;
|
|
197
|
-
Message.codec = () => {
|
|
198
|
-
if (_codec == null) {
|
|
199
|
-
_codec = message((obj, w, opts = {}) => {
|
|
200
|
-
if (opts.lengthDelimited !== false) {
|
|
201
|
-
w.fork();
|
|
202
|
-
}
|
|
203
|
-
if (obj.type != null) {
|
|
204
|
-
w.uint32(8);
|
|
205
|
-
Message.MessageType.codec().encode(obj.type, w);
|
|
206
|
-
}
|
|
207
|
-
if (obj.dial != null) {
|
|
208
|
-
w.uint32(18);
|
|
209
|
-
Message.Dial.codec().encode(obj.dial, w);
|
|
210
|
-
}
|
|
211
|
-
if (obj.dialResponse != null) {
|
|
212
|
-
w.uint32(26);
|
|
213
|
-
Message.DialResponse.codec().encode(obj.dialResponse, w);
|
|
214
|
-
}
|
|
215
|
-
if (opts.lengthDelimited !== false) {
|
|
216
|
-
w.ldelim();
|
|
217
|
-
}
|
|
218
|
-
}, (reader, length) => {
|
|
219
|
-
const obj = {};
|
|
220
|
-
const end = length == null ? reader.len : reader.pos + length;
|
|
221
|
-
while (reader.pos < end) {
|
|
222
|
-
const tag = reader.uint32();
|
|
223
|
-
switch (tag >>> 3) {
|
|
224
|
-
case 1:
|
|
225
|
-
obj.type = Message.MessageType.codec().decode(reader);
|
|
226
|
-
break;
|
|
227
|
-
case 2:
|
|
228
|
-
obj.dial = Message.Dial.codec().decode(reader, reader.uint32());
|
|
229
|
-
break;
|
|
230
|
-
case 3:
|
|
231
|
-
obj.dialResponse = Message.DialResponse.codec().decode(reader, reader.uint32());
|
|
232
|
-
break;
|
|
233
|
-
default:
|
|
234
|
-
reader.skipType(tag & 7);
|
|
235
|
-
break;
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
return obj;
|
|
239
|
-
});
|
|
240
|
-
}
|
|
241
|
-
return _codec;
|
|
242
|
-
};
|
|
243
|
-
Message.encode = (obj) => {
|
|
244
|
-
return encodeMessage(obj, Message.codec());
|
|
245
|
-
};
|
|
246
|
-
Message.decode = (buf) => {
|
|
247
|
-
return decodeMessage(buf, Message.codec());
|
|
248
|
-
};
|
|
249
|
-
})(Message || (Message = {}));
|
|
250
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/autonat/pb/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Delay before HOP relay service is advertised on the network
|
|
3
|
-
*/
|
|
4
|
-
export declare const ADVERTISE_BOOT_DELAY: number;
|
|
5
|
-
/**
|
|
6
|
-
* Delay Between HOP relay service advertisements on the network
|
|
7
|
-
*/
|
|
8
|
-
export declare const ADVERTISE_TTL: number;
|
|
9
|
-
/**
|
|
10
|
-
* Multicodec code
|
|
11
|
-
*/
|
|
12
|
-
export declare const CIRCUIT_PROTO_CODE = 290;
|
|
13
|
-
/**
|
|
14
|
-
* Relay HOP relay service namespace for discovery
|
|
15
|
-
*/
|
|
16
|
-
export declare const RELAY_RENDEZVOUS_NS = "/libp2p/relay";
|
|
17
|
-
/**
|
|
18
|
-
* The maximum number of relay reservations the relay server will accept
|
|
19
|
-
*/
|
|
20
|
-
export declare const DEFAULT_MAX_RESERVATION_STORE_SIZE = 15;
|
|
21
|
-
/**
|
|
22
|
-
* How often to check for reservation expiry
|
|
23
|
-
*/
|
|
24
|
-
export declare const DEFAULT_MAX_RESERVATION_CLEAR_INTERVAL: number;
|
|
25
|
-
/**
|
|
26
|
-
* How often to check for reservation expiry
|
|
27
|
-
*/
|
|
28
|
-
export declare const DEFAULT_MAX_RESERVATION_TTL: number;
|
|
29
|
-
export declare const DEFAULT_RESERVATION_CONCURRENCY = 1;
|
|
30
|
-
export declare const RELAY_SOURCE_TAG = "circuit-relay-source";
|
|
31
|
-
export declare const RELAY_TAG = "circuit-relay-relay";
|
|
32
|
-
export declare const DEFAULT_DURATION_LIMIT: number;
|
|
33
|
-
export declare const DEFAULT_DATA_LIMIT: bigint;
|
|
34
|
-
/**
|
|
35
|
-
* The hop protocol
|
|
36
|
-
*/
|
|
37
|
-
export declare const RELAY_V2_HOP_CODEC = "/libp2p/circuit/relay/0.2.0/hop";
|
|
38
|
-
/**
|
|
39
|
-
* the stop protocol
|
|
40
|
-
*/
|
|
41
|
-
export declare const RELAY_V2_STOP_CODEC = "/libp2p/circuit/relay/0.2.0/stop";
|
|
42
|
-
/**
|
|
43
|
-
* Hop messages must be exchanged inside this timeout
|
|
44
|
-
*/
|
|
45
|
-
export declare const DEFAULT_HOP_TIMEOUT: number;
|
|
46
|
-
/**
|
|
47
|
-
* How long to wait before starting to advertise the relay service
|
|
48
|
-
*/
|
|
49
|
-
export declare const DEFAULT_ADVERT_BOOT_DELAY: number;
|
|
50
|
-
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/circuit-relay/constants.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,eAAO,MAAM,oBAAoB,QAAc,CAAA;AAE/C;;GAEG;AACH,eAAO,MAAM,aAAa,QAAc,CAAA;AAExC;;GAEG;AACH,eAAO,MAAM,kBAAkB,MAAM,CAAA;AAErC;;GAEG;AACH,eAAO,MAAM,mBAAmB,kBAAkB,CAAA;AAElD;;GAEG;AACH,eAAO,MAAM,kCAAkC,KAAK,CAAA;AAEpD;;GAEG;AACH,eAAO,MAAM,sCAAsC,QAAe,CAAA;AAElE;;GAEG;AACH,eAAO,MAAM,2BAA2B,QAAkB,CAAA;AAE1D,eAAO,MAAM,+BAA+B,IAAI,CAAA;AAEhD,eAAO,MAAM,gBAAgB,yBAAyB,CAAA;AAEtD,eAAO,MAAM,SAAS,wBAAwB,CAAA;AAM9C,eAAO,MAAM,sBAAsB,QAAa,CAAA;AAGhD,eAAO,MAAM,kBAAkB,QAAkB,CAAA;AAEjD;;GAEG;AACH,eAAO,MAAM,kBAAkB,oCAAoC,CAAA;AAEnE;;GAEG;AACH,eAAO,MAAM,mBAAmB,qCAAqC,CAAA;AAErE;;GAEG;AACH,eAAO,MAAM,mBAAmB,QAAc,CAAA;AAE9C;;GAEG;AACH,eAAO,MAAM,yBAAyB,QAAc,CAAA"}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
const second = 1000;
|
|
2
|
-
const minute = 60 * second;
|
|
3
|
-
/**
|
|
4
|
-
* Delay before HOP relay service is advertised on the network
|
|
5
|
-
*/
|
|
6
|
-
export const ADVERTISE_BOOT_DELAY = 15 * minute;
|
|
7
|
-
/**
|
|
8
|
-
* Delay Between HOP relay service advertisements on the network
|
|
9
|
-
*/
|
|
10
|
-
export const ADVERTISE_TTL = 30 * minute;
|
|
11
|
-
/**
|
|
12
|
-
* Multicodec code
|
|
13
|
-
*/
|
|
14
|
-
export const CIRCUIT_PROTO_CODE = 290;
|
|
15
|
-
/**
|
|
16
|
-
* Relay HOP relay service namespace for discovery
|
|
17
|
-
*/
|
|
18
|
-
export const RELAY_RENDEZVOUS_NS = '/libp2p/relay';
|
|
19
|
-
/**
|
|
20
|
-
* The maximum number of relay reservations the relay server will accept
|
|
21
|
-
*/
|
|
22
|
-
export const DEFAULT_MAX_RESERVATION_STORE_SIZE = 15;
|
|
23
|
-
/**
|
|
24
|
-
* How often to check for reservation expiry
|
|
25
|
-
*/
|
|
26
|
-
export const DEFAULT_MAX_RESERVATION_CLEAR_INTERVAL = 300 * second;
|
|
27
|
-
/**
|
|
28
|
-
* How often to check for reservation expiry
|
|
29
|
-
*/
|
|
30
|
-
export const DEFAULT_MAX_RESERVATION_TTL = 2 * 60 * minute;
|
|
31
|
-
export const DEFAULT_RESERVATION_CONCURRENCY = 1;
|
|
32
|
-
export const RELAY_SOURCE_TAG = 'circuit-relay-source';
|
|
33
|
-
export const RELAY_TAG = 'circuit-relay-relay';
|
|
34
|
-
// circuit v2 connection limits
|
|
35
|
-
// https://github.com/libp2p/go-libp2p/blob/master/p2p/protocol/circuitv2/relay/resources.go#L61-L66
|
|
36
|
-
// 2 min is the default connection duration
|
|
37
|
-
export const DEFAULT_DURATION_LIMIT = 2 * minute;
|
|
38
|
-
// 128k is the default data limit
|
|
39
|
-
export const DEFAULT_DATA_LIMIT = BigInt(1 << 17);
|
|
40
|
-
/**
|
|
41
|
-
* The hop protocol
|
|
42
|
-
*/
|
|
43
|
-
export const RELAY_V2_HOP_CODEC = '/libp2p/circuit/relay/0.2.0/hop';
|
|
44
|
-
/**
|
|
45
|
-
* the stop protocol
|
|
46
|
-
*/
|
|
47
|
-
export const RELAY_V2_STOP_CODEC = '/libp2p/circuit/relay/0.2.0/stop';
|
|
48
|
-
/**
|
|
49
|
-
* Hop messages must be exchanged inside this timeout
|
|
50
|
-
*/
|
|
51
|
-
export const DEFAULT_HOP_TIMEOUT = 30 * second;
|
|
52
|
-
/**
|
|
53
|
-
* How long to wait before starting to advertise the relay service
|
|
54
|
-
*/
|
|
55
|
-
export const DEFAULT_ADVERT_BOOT_DELAY = 30 * second;
|
|
56
|
-
//# sourceMappingURL=constants.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../src/circuit-relay/constants.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,GAAG,IAAI,CAAA;AACnB,MAAM,MAAM,GAAG,EAAE,GAAG,MAAM,CAAA;AAE1B;;GAEG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,EAAE,GAAG,MAAM,CAAA;AAE/C;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,EAAE,GAAG,MAAM,CAAA;AAExC;;GAEG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,GAAG,CAAA;AAErC;;GAEG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,eAAe,CAAA;AAElD;;GAEG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAG,EAAE,CAAA;AAEpD;;GAEG;AACH,MAAM,CAAC,MAAM,sCAAsC,GAAG,GAAG,GAAG,MAAM,CAAA;AAElE;;GAEG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,GAAG,EAAE,GAAG,MAAM,CAAA;AAE1D,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,CAAA;AAEhD,MAAM,CAAC,MAAM,gBAAgB,GAAG,sBAAsB,CAAA;AAEtD,MAAM,CAAC,MAAM,SAAS,GAAG,qBAAqB,CAAA;AAE9C,+BAA+B;AAC/B,oGAAoG;AAEpG,2CAA2C;AAC3C,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,GAAG,MAAM,CAAA;AAEhD,iCAAiC;AACjC,MAAM,CAAC,MAAM,kBAAkB,GAAG,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC,CAAA;AAEjD;;GAEG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,iCAAiC,CAAA;AAEnE;;GAEG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,kCAAkC,CAAA;AAErE;;GAEG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,EAAE,GAAG,MAAM,CAAA;AAE9C;;GAEG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAG,EAAE,GAAG,MAAM,CAAA"}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @packageDocumentation
|
|
3
|
-
*
|
|
4
|
-
* The `circuitRelayTransport` allows libp2p to dial and listen on [Circuit Relay](https://docs.libp2p.io/concepts/nat/circuit-relay/)
|
|
5
|
-
* addresses.
|
|
6
|
-
*
|
|
7
|
-
* @example
|
|
8
|
-
*
|
|
9
|
-
* ```typescript
|
|
10
|
-
* import { createLibp2p } from 'libp2p'
|
|
11
|
-
* import { circuitRelayTransport } from 'libp2p/circuit-relay'
|
|
12
|
-
*
|
|
13
|
-
* const node = await createLibp2p({
|
|
14
|
-
* transports: [
|
|
15
|
-
* circuitRelayTransport()
|
|
16
|
-
* ]
|
|
17
|
-
* })
|
|
18
|
-
* ```
|
|
19
|
-
*
|
|
20
|
-
* The `circuitRelayServer` function allows libp2p to function as a [Circuit Relay](https://docs.libp2p.io/concepts/nat/circuit-relay/)
|
|
21
|
-
* server. This will not work in browsers.
|
|
22
|
-
*
|
|
23
|
-
* @example
|
|
24
|
-
*
|
|
25
|
-
* ```typescript
|
|
26
|
-
* import { createLibp2p } from 'libp2p'
|
|
27
|
-
* import { circuitRelayServer } from 'libp2p/circuit-relay'
|
|
28
|
-
*
|
|
29
|
-
* const node = await createLibp2p({
|
|
30
|
-
* services: [
|
|
31
|
-
* circuitRelay: circuitRelayServer()
|
|
32
|
-
* ]
|
|
33
|
-
* })
|
|
34
|
-
* ```
|
|
35
|
-
*/
|
|
36
|
-
import type { Limit } from './pb/index.js';
|
|
37
|
-
import type { TypedEventEmitter } from '@libp2p/interface/events';
|
|
38
|
-
import type { PeerMap } from '@libp2p/peer-collections';
|
|
39
|
-
import type { Multiaddr } from '@multiformats/multiaddr';
|
|
40
|
-
export interface RelayReservation {
|
|
41
|
-
expire: Date;
|
|
42
|
-
addr: Multiaddr;
|
|
43
|
-
limit?: Limit;
|
|
44
|
-
}
|
|
45
|
-
export interface CircuitRelayServiceEvents {
|
|
46
|
-
'relay:reservation': CustomEvent<RelayReservation>;
|
|
47
|
-
'relay:advert:success': CustomEvent<unknown>;
|
|
48
|
-
'relay:advert:error': CustomEvent<Error>;
|
|
49
|
-
}
|
|
50
|
-
export interface CircuitRelayService extends TypedEventEmitter<CircuitRelayServiceEvents> {
|
|
51
|
-
reservations: PeerMap<RelayReservation>;
|
|
52
|
-
}
|
|
53
|
-
export { circuitRelayServer } from './server/index.js';
|
|
54
|
-
export { circuitRelayTransport } from './transport/index.js';
|
|
55
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/circuit-relay/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAExD,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,IAAI,CAAA;IACZ,IAAI,EAAE,SAAS,CAAA;IACf,KAAK,CAAC,EAAE,KAAK,CAAA;CACd;AAED,MAAM,WAAW,yBAAyB;IACxC,mBAAmB,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAA;IAClD,sBAAsB,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;IAC5C,oBAAoB,EAAE,WAAW,CAAC,KAAK,CAAC,CAAA;CACzC;AAED,MAAM,WAAW,mBAAoB,SAAQ,iBAAiB,CAAC,yBAAyB,CAAC;IACvF,YAAY,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAA;CACxC;AAED,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAA;AACtD,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAA"}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @packageDocumentation
|
|
3
|
-
*
|
|
4
|
-
* The `circuitRelayTransport` allows libp2p to dial and listen on [Circuit Relay](https://docs.libp2p.io/concepts/nat/circuit-relay/)
|
|
5
|
-
* addresses.
|
|
6
|
-
*
|
|
7
|
-
* @example
|
|
8
|
-
*
|
|
9
|
-
* ```typescript
|
|
10
|
-
* import { createLibp2p } from 'libp2p'
|
|
11
|
-
* import { circuitRelayTransport } from 'libp2p/circuit-relay'
|
|
12
|
-
*
|
|
13
|
-
* const node = await createLibp2p({
|
|
14
|
-
* transports: [
|
|
15
|
-
* circuitRelayTransport()
|
|
16
|
-
* ]
|
|
17
|
-
* })
|
|
18
|
-
* ```
|
|
19
|
-
*
|
|
20
|
-
* The `circuitRelayServer` function allows libp2p to function as a [Circuit Relay](https://docs.libp2p.io/concepts/nat/circuit-relay/)
|
|
21
|
-
* server. This will not work in browsers.
|
|
22
|
-
*
|
|
23
|
-
* @example
|
|
24
|
-
*
|
|
25
|
-
* ```typescript
|
|
26
|
-
* import { createLibp2p } from 'libp2p'
|
|
27
|
-
* import { circuitRelayServer } from 'libp2p/circuit-relay'
|
|
28
|
-
*
|
|
29
|
-
* const node = await createLibp2p({
|
|
30
|
-
* services: [
|
|
31
|
-
* circuitRelay: circuitRelayServer()
|
|
32
|
-
* ]
|
|
33
|
-
* })
|
|
34
|
-
* ```
|
|
35
|
-
*/
|
|
36
|
-
export { circuitRelayServer } from './server/index.js';
|
|
37
|
-
export { circuitRelayTransport } from './transport/index.js';
|
|
38
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/circuit-relay/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAuBH,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAA;AACtD,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAA"}
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
import type { Codec } from 'protons-runtime';
|
|
2
|
-
import type { Uint8ArrayList } from 'uint8arraylist';
|
|
3
|
-
export interface HopMessage {
|
|
4
|
-
type?: HopMessage.Type;
|
|
5
|
-
peer?: Peer;
|
|
6
|
-
reservation?: Reservation;
|
|
7
|
-
limit?: Limit;
|
|
8
|
-
status?: Status;
|
|
9
|
-
}
|
|
10
|
-
export declare namespace HopMessage {
|
|
11
|
-
enum Type {
|
|
12
|
-
RESERVE = "RESERVE",
|
|
13
|
-
CONNECT = "CONNECT",
|
|
14
|
-
STATUS = "STATUS"
|
|
15
|
-
}
|
|
16
|
-
namespace Type {
|
|
17
|
-
const codec: () => Codec<Type>;
|
|
18
|
-
}
|
|
19
|
-
const codec: () => Codec<HopMessage>;
|
|
20
|
-
const encode: (obj: Partial<HopMessage>) => Uint8Array;
|
|
21
|
-
const decode: (buf: Uint8Array | Uint8ArrayList) => HopMessage;
|
|
22
|
-
}
|
|
23
|
-
export interface StopMessage {
|
|
24
|
-
type?: StopMessage.Type;
|
|
25
|
-
peer?: Peer;
|
|
26
|
-
limit?: Limit;
|
|
27
|
-
status?: Status;
|
|
28
|
-
}
|
|
29
|
-
export declare namespace StopMessage {
|
|
30
|
-
enum Type {
|
|
31
|
-
CONNECT = "CONNECT",
|
|
32
|
-
STATUS = "STATUS"
|
|
33
|
-
}
|
|
34
|
-
namespace Type {
|
|
35
|
-
const codec: () => Codec<Type>;
|
|
36
|
-
}
|
|
37
|
-
const codec: () => Codec<StopMessage>;
|
|
38
|
-
const encode: (obj: Partial<StopMessage>) => Uint8Array;
|
|
39
|
-
const decode: (buf: Uint8Array | Uint8ArrayList) => StopMessage;
|
|
40
|
-
}
|
|
41
|
-
export interface Peer {
|
|
42
|
-
id: Uint8Array;
|
|
43
|
-
addrs: Uint8Array[];
|
|
44
|
-
}
|
|
45
|
-
export declare namespace Peer {
|
|
46
|
-
const codec: () => Codec<Peer>;
|
|
47
|
-
const encode: (obj: Partial<Peer>) => Uint8Array;
|
|
48
|
-
const decode: (buf: Uint8Array | Uint8ArrayList) => Peer;
|
|
49
|
-
}
|
|
50
|
-
export interface Reservation {
|
|
51
|
-
expire: bigint;
|
|
52
|
-
addrs: Uint8Array[];
|
|
53
|
-
voucher?: Uint8Array;
|
|
54
|
-
}
|
|
55
|
-
export declare namespace Reservation {
|
|
56
|
-
const codec: () => Codec<Reservation>;
|
|
57
|
-
const encode: (obj: Partial<Reservation>) => Uint8Array;
|
|
58
|
-
const decode: (buf: Uint8Array | Uint8ArrayList) => Reservation;
|
|
59
|
-
}
|
|
60
|
-
export interface Limit {
|
|
61
|
-
duration?: number;
|
|
62
|
-
data?: bigint;
|
|
63
|
-
}
|
|
64
|
-
export declare namespace Limit {
|
|
65
|
-
const codec: () => Codec<Limit>;
|
|
66
|
-
const encode: (obj: Partial<Limit>) => Uint8Array;
|
|
67
|
-
const decode: (buf: Uint8Array | Uint8ArrayList) => Limit;
|
|
68
|
-
}
|
|
69
|
-
export declare enum Status {
|
|
70
|
-
UNUSED = "UNUSED",
|
|
71
|
-
OK = "OK",
|
|
72
|
-
RESERVATION_REFUSED = "RESERVATION_REFUSED",
|
|
73
|
-
RESOURCE_LIMIT_EXCEEDED = "RESOURCE_LIMIT_EXCEEDED",
|
|
74
|
-
PERMISSION_DENIED = "PERMISSION_DENIED",
|
|
75
|
-
CONNECTION_FAILED = "CONNECTION_FAILED",
|
|
76
|
-
NO_RESERVATION = "NO_RESERVATION",
|
|
77
|
-
MALFORMED_MESSAGE = "MALFORMED_MESSAGE",
|
|
78
|
-
UNEXPECTED_MESSAGE = "UNEXPECTED_MESSAGE"
|
|
79
|
-
}
|
|
80
|
-
export declare namespace Status {
|
|
81
|
-
const codec: () => Codec<Status>;
|
|
82
|
-
}
|
|
83
|
-
export interface ReservationVoucher {
|
|
84
|
-
relay: Uint8Array;
|
|
85
|
-
peer: Uint8Array;
|
|
86
|
-
expiration: bigint;
|
|
87
|
-
}
|
|
88
|
-
export declare namespace ReservationVoucher {
|
|
89
|
-
const codec: () => Codec<ReservationVoucher>;
|
|
90
|
-
const encode: (obj: Partial<ReservationVoucher>) => Uint8Array;
|
|
91
|
-
const decode: (buf: Uint8Array | Uint8ArrayList) => ReservationVoucher;
|
|
92
|
-
}
|
|
93
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/circuit-relay/pb/index.ts"],"names":[],"mappings":"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"}
|