@fails-components/webtransport-transport-http3-quiche 1.0.6 → 1.0.9
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/CMakeLists.txt +2 -6
- package/dist/lib/clientsocket.d.ts.map +1 -0
- package/dist/lib/index.d.ts.map +1 -0
- package/dist/lib/serversocket.d.ts +12 -0
- package/dist/lib/serversocket.d.ts.map +1 -0
- package/dist/lib/socket.d.ts +19 -0
- package/dist/lib/socket.d.ts.map +1 -0
- package/dist/lib/types.d.ts +21 -0
- package/dist/lib/types.d.ts.map +1 -0
- package/dist/lib/utils.d.ts +6 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/http3client.cc +14 -0
- package/src/http3clientsession.cc +12 -0
- package/src/http3clientsession.h +6 -0
- package/src/http3server.cc +13 -0
- package/src/http3serversession.cc +13 -0
- package/src/http3serversession.h +6 -0
- package/src/http3serverstream.cc +3 -2
- package/src/http3wtsessionvisitor.h +63 -11
- package/tsconfig.json +2 -4
- package/dist/main/lib/error.d.ts +0 -8
- package/dist/main/lib/error.d.ts.map +0 -1
- package/dist/main/lib/http2/browser/browser.d.ts +0 -30
- package/dist/main/lib/http2/browser/browser.d.ts.map +0 -1
- package/dist/main/lib/http2/node/capsuleparser.d.ts +0 -24
- package/dist/main/lib/http2/node/capsuleparser.d.ts.map +0 -1
- package/dist/main/lib/http2/node/client.d.ts +0 -29
- package/dist/main/lib/http2/node/client.d.ts.map +0 -1
- package/dist/main/lib/http2/node/index.d.ts +0 -3
- package/dist/main/lib/http2/node/index.d.ts.map +0 -1
- package/dist/main/lib/http2/parserbasehttp2.d.ts +0 -31
- package/dist/main/lib/http2/parserbasehttp2.d.ts.map +0 -1
- package/dist/main/lib/http2/websocketcommon.d.ts +0 -2
- package/dist/main/lib/http2/websocketcommon.d.ts.map +0 -1
- package/dist/main/lib/index.browser.d.ts +0 -58
- package/dist/main/lib/index.browser.d.ts.map +0 -1
- package/dist/main/lib/index.node.d.ts +0 -59
- package/dist/main/lib/index.node.d.ts.map +0 -1
- package/dist/main/lib/utils.d.ts +0 -11
- package/dist/main/lib/utils.d.ts.map +0 -1
- package/dist/main/lib/webstreams.browser.d.ts +0 -5
- package/dist/main/lib/webstreams.browser.d.ts.map +0 -1
- package/dist/transports/http3-quiche/lib/clientsocket.d.ts.map +0 -1
- package/dist/transports/http3-quiche/lib/index.d.ts.map +0 -1
- package/dist/transports/http3-quiche/tsconfig.tsbuildinfo +0 -1
- /package/dist/{transports/http3-quiche/lib → lib}/clientsocket.d.ts +0 -0
- /package/dist/{transports/http3-quiche/lib → lib}/index.d.ts +0 -0
package/CMakeLists.txt
CHANGED
|
@@ -489,6 +489,8 @@ third_party/quiche/quiche/quic/core/frames/quic_path_response_frame.cc
|
|
|
489
489
|
third_party/quiche/quiche/quic/core/frames/quic_path_response_frame.h
|
|
490
490
|
third_party/quiche/quiche/quic/core/frames/quic_ping_frame.cc
|
|
491
491
|
third_party/quiche/quiche/quic/core/frames/quic_ping_frame.h
|
|
492
|
+
third_party/quiche/quiche/quic/core/frames/quic_reset_stream_at_frame.cc
|
|
493
|
+
third_party/quiche/quiche/quic/core/frames/quic_reset_stream_at_frame.h
|
|
492
494
|
third_party/quiche/quiche/quic/core/frames/quic_retire_connection_id_frame.cc
|
|
493
495
|
third_party/quiche/quiche/quic/core/frames/quic_retire_connection_id_frame.h
|
|
494
496
|
third_party/quiche/quiche/quic/core/frames/quic_rst_stream_frame.cc
|
|
@@ -687,7 +689,6 @@ third_party/quiche/quiche/quic/core/quic_packets.cc
|
|
|
687
689
|
third_party/quiche/quiche/quic/core/quic_packets.h
|
|
688
690
|
third_party/quiche/quiche/quic/core/quic_path_validator.cc
|
|
689
691
|
third_party/quiche/quiche/quic/core/quic_path_validator.h
|
|
690
|
-
third_party/quiche/quiche/quic/core/quic_protocol_flags_list.h
|
|
691
692
|
third_party/quiche/quiche/quic/core/quic_received_packet_manager.cc
|
|
692
693
|
third_party/quiche/quiche/quic/core/quic_received_packet_manager.h
|
|
693
694
|
third_party/quiche/quiche/quic/core/quic_sent_packet_manager.cc
|
|
@@ -800,13 +801,8 @@ third_party/quiche/quiche/spdy/core/spdy_frame_builder.h
|
|
|
800
801
|
third_party/quiche/quiche/spdy/core/spdy_framer.cc
|
|
801
802
|
third_party/quiche/quiche/spdy/core/spdy_framer.h
|
|
802
803
|
third_party/quiche/quiche/spdy/core/spdy_headers_handler_interface.h
|
|
803
|
-
third_party/quiche/quiche/spdy/core/spdy_intrusive_list.h
|
|
804
804
|
third_party/quiche/quiche/spdy/core/spdy_no_op_visitor.cc
|
|
805
805
|
third_party/quiche/quiche/spdy/core/spdy_no_op_visitor.h
|
|
806
|
-
third_party/quiche/quiche/spdy/core/spdy_pinnable_buffer_piece.cc
|
|
807
|
-
third_party/quiche/quiche/spdy/core/spdy_pinnable_buffer_piece.h
|
|
808
|
-
third_party/quiche/quiche/spdy/core/spdy_prefixed_buffer_reader.cc
|
|
809
|
-
third_party/quiche/quiche/spdy/core/spdy_prefixed_buffer_reader.h
|
|
810
806
|
third_party/quiche/quiche/spdy/core/spdy_protocol.cc
|
|
811
807
|
third_party/quiche/quiche/spdy/core/spdy_protocol.h
|
|
812
808
|
third_party/quiche/quiche/spdy/core/zero_copy_output_buffer.h
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clientsocket.d.ts","sourceRoot":"","sources":["../../lib/clientsocket.js"],"names":[],"mappings":";AAQA;IACE;;OAEG;IACH,kBAFW,OAAO,4BAA4B,EAAE,oBAAoB,EAenE;IATC,aAAwB;IACxB,aAAqC;IACrC,8BAAgC;IAChC,mBAAyC;IACzC,gEAAgE;IAEhE,OAFW,OAAO,8BAA8B,EAAE,UAAU,CAEtC;IAEtB,gEAAgB;IAGlB,aAyCC;IAtCK,iDAAqB;IAwC3B,oBAQC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/index.js"],"names":[],"mappings":"AA0BA,2BAAuC;AACvC,6BAA6C;AAOtC;;;qBAON;AAED,0CAAuE;AACvE,0CAAuE"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export class Http3WebTransportServerSocket extends Http3WebTransportSocket {
|
|
2
|
+
port: number;
|
|
3
|
+
host: string;
|
|
4
|
+
/** @type {import('../../../main/lib/session.js').HttpServer} */
|
|
5
|
+
jsobj: import('../../../main/lib/session.js').HttpServer;
|
|
6
|
+
/** @type {import('node:dns').LookupAddress|undefined} */
|
|
7
|
+
address: import('node:dns').LookupAddress | undefined;
|
|
8
|
+
init(): void;
|
|
9
|
+
stopServer(): void;
|
|
10
|
+
}
|
|
11
|
+
import { Http3WebTransportSocket } from "./socket.js";
|
|
12
|
+
//# sourceMappingURL=serversocket.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"serversocket.d.ts","sourceRoot":"","sources":["../../lib/serversocket.js"],"names":[],"mappings":"AAQA;IAQI,aAAwB;IACxB,aAAqC;IACrC,gEAAgE;IAEhE,OAFW,OAAO,8BAA8B,EAAE,UAAU,CAEtC;IAEtB,yDAAyD;IACzD,SADW,OAAO,UAAU,EAAE,aAAa,GAAC,SAAS,CAC7B;IAG1B,aA6CC;IAED,mBAKC;CACF"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export class Http3WebTransportSocket {
|
|
2
|
+
/**
|
|
3
|
+
* @param {import('../../../main/lib/types.js').HttpWebTransportInit|undefined} args
|
|
4
|
+
*/
|
|
5
|
+
constructor(args: import('../../../main/lib/types.js').HttpWebTransportInit | undefined);
|
|
6
|
+
/** @type {import('node:dgram').Socket} */
|
|
7
|
+
socketInt: import('node:dgram').Socket;
|
|
8
|
+
cobj: any;
|
|
9
|
+
chlosSched: boolean;
|
|
10
|
+
packetSendCB(): void;
|
|
11
|
+
doProcessBufferedChlos(): void;
|
|
12
|
+
blocked: boolean;
|
|
13
|
+
closed: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* @param {import('./types').UDPServerSocketSend} args
|
|
16
|
+
*/
|
|
17
|
+
sendPacket({ msg, offset, length, port, address }: import('./types').UDPServerSocketSend): boolean;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=socket.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"socket.d.ts","sourceRoot":"","sources":["../../lib/socket.js"],"names":[],"mappings":"AAqEA;IACE;;OAEG;IACH,kBAFW,OAAO,4BAA4B,EAAE,oBAAoB,GAAC,SAAS,EAa7E;IAVC,0CAA0C;IAE1C,WAFW,OAAO,YAAY,EAAE,MAAM,CAEZ;IAE1B,UAAqB;IACrB,oBAAuB;IAgCzB,qBAKC;IA9BD,+BAGC;IAPC,iBAAoB;IACpB,gBAAmB;IAQrB;;OAEG;IAEH,mDAHW,OAAO,SAAS,EAAE,mBAAmB,WAiB/C;CAQF"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { WebTransportOptions } from '../../../main/lib/dom';
|
|
2
|
+
export interface UDPServerSocketSend {
|
|
3
|
+
msg: Uint8Array;
|
|
4
|
+
offset: number;
|
|
5
|
+
length: number;
|
|
6
|
+
port: number;
|
|
7
|
+
address: string;
|
|
8
|
+
}
|
|
9
|
+
export interface Logger {
|
|
10
|
+
(formatter: any, ...args: any[]): void;
|
|
11
|
+
error: (formatter: any, ...args: any[]) => void;
|
|
12
|
+
trace: (formatter: any, ...args: any[]) => void;
|
|
13
|
+
}
|
|
14
|
+
export interface HttpWebTransportInit extends WebTransportOptions {
|
|
15
|
+
host: string;
|
|
16
|
+
port: string | number;
|
|
17
|
+
quicheLogVerbose?: number;
|
|
18
|
+
forceIpv6?: boolean;
|
|
19
|
+
localPort?: number;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../lib/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,mBAAmB,EACpB,MAAM,uBAAuB,CAAA;AAE9B,MAAM,WAAW,mBAAmB;IAChC,GAAG,EAAG,UAAU,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAC,MAAM,CAAA;IACX,OAAO,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,MAAM;IACrB,CAAC,SAAS,EAAE,GAAG,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI,CAAA;IACtC,KAAK,EAAE,CAAC,SAAS,EAAE,GAAG,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAA;IAC/C,KAAK,EAAE,CAAC,SAAS,EAAE,GAAG,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAA;CAChD;AAED,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB;IAC/D,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../lib/utils.js"],"names":[],"mappings":"AAEA;;;GAGG;AACH,6BAHW,MAAM,GACJ,OAAO,SAAS,EAAE,MAAM,CAOpC"}
|
package/package.json
CHANGED
package/src/http3client.cc
CHANGED
|
@@ -608,6 +608,7 @@ namespace quic
|
|
|
608
608
|
static_cast<WebTransportSession *>(wtsession));
|
|
609
609
|
getJS()->processNewClientSession(wtsessionobj);
|
|
610
610
|
auto visitor = std::make_unique<Http3WTSession::Visitor>(wtsessionobj);
|
|
611
|
+
static_cast<Http3ClientSession *>(session_.get())->AddVisitor(id, visitor.get());
|
|
611
612
|
wtsession->SetVisitor(std::move(visitor));
|
|
612
613
|
}
|
|
613
614
|
}
|
|
@@ -1207,6 +1208,19 @@ namespace quic
|
|
|
1207
1208
|
return;
|
|
1208
1209
|
}
|
|
1209
1210
|
}
|
|
1211
|
+
if (lobj.Has("initialBidirectionalStreams") && !(lobj).Get("initialBidirectionalStreams").IsEmpty())
|
|
1212
|
+
{
|
|
1213
|
+
Napi::Value initialBidirectionalStreamsValue = (lobj).Get("initialBidirectionalStreams");
|
|
1214
|
+
int initialBidirectionalStreams = initialBidirectionalStreamsValue.As<Napi::Number>().Int32Value();
|
|
1215
|
+
cconfig.SetMaxBidirectionalStreamsToSend(initialBidirectionalStreams);
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
if (lobj.Has("initialUnidirectionalStreams") && !(lobj).Get("initialUnidirectionalStreams").IsEmpty())
|
|
1219
|
+
{
|
|
1220
|
+
Napi::Value initialUnidirectionalStreamsValue = (lobj).Get("initialUnidirectionalStreams");
|
|
1221
|
+
int initialUnidirectionalStreams = initialUnidirectionalStreamsValue.As<Napi::Number>().Int32Value();
|
|
1222
|
+
cconfig.SetMaxUnidirectionalStreamsToSend(initialUnidirectionalStreams);
|
|
1223
|
+
}
|
|
1210
1224
|
if (lobj.Has("initialStreamFlowControlWindow") && !(lobj).Get("initialStreamFlowControlWindow").IsEmpty())
|
|
1211
1225
|
{
|
|
1212
1226
|
Napi::Value initialStreamFlowControlWindowValue = (lobj).Get("initialStreamFlowControlWindow");
|
|
@@ -62,4 +62,16 @@ namespace quic
|
|
|
62
62
|
: HttpDatagramSupport::kNone;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
void Http3ClientSession::OnCanCreateNewOutgoingStream(bool unidirectional) {
|
|
66
|
+
if (SupportsWebTransport()) {
|
|
67
|
+
auto itty = svisitors_.begin();
|
|
68
|
+
for (auto itty = svisitors_.begin(); itty != svisitors_.end(); itty++) {
|
|
69
|
+
if (unidirectional) {
|
|
70
|
+
(*itty).second->OnCanCreateNewOutgoingUnidirectionalStream();
|
|
71
|
+
} else {
|
|
72
|
+
(*itty).second->OnCanCreateNewOutgoingBidirectionalStream();
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
65
77
|
} // namespace quic
|
package/src/http3clientsession.h
CHANGED
|
@@ -41,6 +41,11 @@ namespace quic
|
|
|
41
41
|
const override;
|
|
42
42
|
HttpDatagramSupport LocalHttpDatagramSupport() override;
|
|
43
43
|
|
|
44
|
+
void OnCanCreateNewOutgoingStream(bool unidirectional) override;
|
|
45
|
+
void AddVisitor(const WebTransportSessionId id, webtransport::SessionVisitor *visitor) {
|
|
46
|
+
svisitors_.try_emplace(id, visitor);
|
|
47
|
+
}
|
|
48
|
+
|
|
44
49
|
void set_on_interim_headers(
|
|
45
50
|
std::function<void(const spdy::Http2HeaderBlock &)> on_interim_headers)
|
|
46
51
|
{
|
|
@@ -51,6 +56,7 @@ namespace quic
|
|
|
51
56
|
std::function<void(const spdy::Http2HeaderBlock &)> on_interim_headers_;
|
|
52
57
|
const bool drop_response_body_;
|
|
53
58
|
const bool enable_web_transport_;
|
|
59
|
+
absl::flat_hash_map<QuicStreamId, webtransport::SessionVisitor *> svisitors_;
|
|
54
60
|
};
|
|
55
61
|
|
|
56
62
|
} // namespace quic
|
package/src/http3server.cc
CHANGED
|
@@ -137,6 +137,19 @@ namespace quic
|
|
|
137
137
|
sconfig.SetMaxBidirectionalStreamsToSend(maxconn);
|
|
138
138
|
sconfig.SetMaxUnidirectionalStreamsToSend(maxconn);
|
|
139
139
|
}
|
|
140
|
+
if (lobj.Has("initialBidirectionalStreams") && !(lobj).Get("initialBidirectionalStreams").IsEmpty())
|
|
141
|
+
{
|
|
142
|
+
Napi::Value initialBidirectionalStreamsValue = (lobj).Get("initialBidirectionalStreams");
|
|
143
|
+
int initialBidirectionalStreams = initialBidirectionalStreamsValue.As<Napi::Number>().Int32Value();
|
|
144
|
+
sconfig.SetMaxBidirectionalStreamsToSend(initialBidirectionalStreams);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
if (lobj.Has("initialUnidirectionalStreams") && !(lobj).Get("initialUnidirectionalStreams").IsEmpty())
|
|
148
|
+
{
|
|
149
|
+
Napi::Value initialUnidirectionalStreamsValue = (lobj).Get("initialUnidirectionalStreams");
|
|
150
|
+
int initialUnidirectionalStreams = initialUnidirectionalStreamsValue.As<Napi::Number>().Int32Value();
|
|
151
|
+
sconfig.SetMaxUnidirectionalStreamsToSend(initialUnidirectionalStreams);
|
|
152
|
+
}
|
|
140
153
|
|
|
141
154
|
if (lobj.Has("initialStreamFlowControlWindow") && !(lobj).Get("initialStreamFlowControlWindow").IsEmpty())
|
|
142
155
|
{
|
|
@@ -120,4 +120,17 @@ namespace quic
|
|
|
120
120
|
ActivateStream(absl::WrapUnique(stream));
|
|
121
121
|
return stream;
|
|
122
122
|
}
|
|
123
|
+
|
|
124
|
+
void Http3ServerSession::OnCanCreateNewOutgoingStream(bool unidirectional) {
|
|
125
|
+
if (SupportsWebTransport()) {
|
|
126
|
+
auto itty = svisitors_.begin();
|
|
127
|
+
for (auto itty = svisitors_.begin(); itty != svisitors_.end(); itty++) {
|
|
128
|
+
if (unidirectional) {
|
|
129
|
+
(*itty).second->OnCanCreateNewOutgoingUnidirectionalStream();
|
|
130
|
+
} else {
|
|
131
|
+
(*itty).second->OnCanCreateNewOutgoingBidirectionalStream();
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
123
136
|
} // namespace quic
|
package/src/http3serversession.h
CHANGED
|
@@ -53,6 +53,11 @@ namespace quic
|
|
|
53
53
|
// Override base class to detact client sending data on server push stream.
|
|
54
54
|
void OnStreamFrame(const QuicStreamFrame &frame) override;
|
|
55
55
|
|
|
56
|
+
void OnCanCreateNewOutgoingStream(bool unidirectional) override;
|
|
57
|
+
void AddVisitor(const WebTransportSessionId id, webtransport::SessionVisitor *visitor) {
|
|
58
|
+
svisitors_.try_emplace(id, visitor);
|
|
59
|
+
}
|
|
60
|
+
|
|
56
61
|
protected:
|
|
57
62
|
// QuicSession methods:
|
|
58
63
|
QuicSpdyStream *CreateIncomingStream(QuicStreamId id) override;
|
|
@@ -88,6 +93,7 @@ namespace quic
|
|
|
88
93
|
}
|
|
89
94
|
|
|
90
95
|
Http3ServerBackend *http3_server_backend_; // Not owned.
|
|
96
|
+
absl::flat_hash_map<QuicStreamId, webtransport::SessionVisitor *> svisitors_;
|
|
91
97
|
};
|
|
92
98
|
|
|
93
99
|
} // namespace quic
|
package/src/http3serverstream.cc
CHANGED
|
@@ -209,8 +209,9 @@ namespace quic
|
|
|
209
209
|
{
|
|
210
210
|
WriteHeaders(std::move(resp->response_headers), false, nullptr);
|
|
211
211
|
if (resp->visitor != nullptr)
|
|
212
|
-
{
|
|
213
|
-
|
|
212
|
+
{
|
|
213
|
+
static_cast<Http3ServerSession *>(session())->AddVisitor(id(), resp->visitor.get());
|
|
214
|
+
web_transport()->SetVisitor(std::move(resp->visitor));
|
|
214
215
|
}
|
|
215
216
|
web_transport()->HeadersReceived(request_headers_);
|
|
216
217
|
}
|
|
@@ -82,17 +82,29 @@ namespace quic
|
|
|
82
82
|
Http3WTSession *session_;
|
|
83
83
|
};
|
|
84
84
|
|
|
85
|
-
|
|
86
|
-
tryOpenBidiStream()
|
|
85
|
+
bool
|
|
86
|
+
tryOpenBidiStream(bool waitUntilAvailable)
|
|
87
87
|
{
|
|
88
|
-
|
|
89
|
-
|
|
88
|
+
if (session_->CanOpenNextOutgoingBidirectionalStream()
|
|
89
|
+
|| waitUntilAvailable) {
|
|
90
|
+
ordBidiStreams++;
|
|
91
|
+
TrySendingBidirectionalStreams();
|
|
92
|
+
return true;
|
|
93
|
+
} else {
|
|
94
|
+
return false;
|
|
95
|
+
}
|
|
90
96
|
}
|
|
91
97
|
|
|
92
|
-
|
|
98
|
+
bool tryOpenUnidiStream(bool waitUntilAvailable)
|
|
93
99
|
{
|
|
94
|
-
|
|
95
|
-
|
|
100
|
+
if (session_->CanOpenNextOutgoingUnidirectionalStream()
|
|
101
|
+
|| waitUntilAvailable) {
|
|
102
|
+
ordUnidiStreams++;
|
|
103
|
+
TrySendingUnidirectionalStreams();
|
|
104
|
+
return true;
|
|
105
|
+
} else {
|
|
106
|
+
return false;
|
|
107
|
+
}
|
|
96
108
|
}
|
|
97
109
|
|
|
98
110
|
void TrySendingBidirectionalStreams();
|
|
@@ -152,14 +164,54 @@ namespace quic
|
|
|
152
164
|
return wtsession_.get();
|
|
153
165
|
}
|
|
154
166
|
|
|
155
|
-
|
|
167
|
+
Napi::Value orderBidiStream(const Napi::CallbackInfo &info)
|
|
156
168
|
{
|
|
157
|
-
|
|
169
|
+
bool waitUntilAvailable = false;
|
|
170
|
+
if (!info[0].IsUndefined())
|
|
171
|
+
{
|
|
172
|
+
Napi::Object lobj = info[0].ToObject();
|
|
173
|
+
if (!lobj.IsEmpty())
|
|
174
|
+
{
|
|
175
|
+
if (lobj.Has("waitUntilAvailable") && !(lobj).Get("waitUntilAvailable").IsEmpty())
|
|
176
|
+
{
|
|
177
|
+
Napi::Value waitUntilAvailableValue = (lobj).Get("waitUntilAvailable");
|
|
178
|
+
waitUntilAvailable = waitUntilAvailableValue.As<Napi::Boolean>().Value();
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
if (wtsession_->tryOpenBidiStream(waitUntilAvailable))
|
|
183
|
+
{
|
|
184
|
+
return Napi::Value::From(Env(), true);
|
|
185
|
+
}
|
|
186
|
+
else
|
|
187
|
+
{
|
|
188
|
+
return Napi::Value::From(Env(), false);
|
|
189
|
+
}
|
|
158
190
|
}
|
|
159
191
|
|
|
160
|
-
|
|
192
|
+
Napi::Value orderUnidiStream(const Napi::CallbackInfo &info)
|
|
161
193
|
{
|
|
162
|
-
|
|
194
|
+
bool waitUntilAvailable = false;
|
|
195
|
+
if (!info[0].IsUndefined())
|
|
196
|
+
{
|
|
197
|
+
Napi::Object lobj = info[0].ToObject();
|
|
198
|
+
if (!lobj.IsEmpty())
|
|
199
|
+
{
|
|
200
|
+
if (lobj.Has("waitUntilAvailable") && !(lobj).Get("waitUntilAvailable").IsEmpty())
|
|
201
|
+
{
|
|
202
|
+
Napi::Value waitUntilAvailableValue = (lobj).Get("waitUntilAvailable");
|
|
203
|
+
waitUntilAvailable = waitUntilAvailableValue.As<Napi::Boolean>().Value();
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
if (wtsession_->tryOpenUnidiStream(waitUntilAvailable))
|
|
208
|
+
{
|
|
209
|
+
return Napi::Value::From(Env(), true);
|
|
210
|
+
}
|
|
211
|
+
else
|
|
212
|
+
{
|
|
213
|
+
return Napi::Value::From(Env(), false);
|
|
214
|
+
}
|
|
163
215
|
}
|
|
164
216
|
|
|
165
217
|
void writeDatagram(const Napi::CallbackInfo &info)
|
package/tsconfig.json
CHANGED
package/dist/main/lib/error.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"error.d.ts","sourceRoot":"","sources":["../../../../../main/lib/error.js"],"names":[],"mappings":"AAAA;IACE;;OAEG;IACH,qBAFW,MAAM,EAMhB;IADa,6BAA8C;CAE7D"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export class Http2WebTransportBrowser {
|
|
2
|
-
/**
|
|
3
|
-
* @param {import('../../types.js').NativeClientOptions} args
|
|
4
|
-
*/
|
|
5
|
-
constructor(args: import('../../types.js').NativeClientOptions);
|
|
6
|
-
port: number;
|
|
7
|
-
hostname: string;
|
|
8
|
-
initialStreamFlowControlWindow: number;
|
|
9
|
-
initialSessionFlowControlWindow: number;
|
|
10
|
-
streamShouldAutoTuneReceiveWindow: boolean;
|
|
11
|
-
streamFlowControlWindowSizeLimit: number;
|
|
12
|
-
sessionShouldAutoTuneReceiveWindow: boolean;
|
|
13
|
-
sessionFlowControlWindowSizeLimit: number;
|
|
14
|
-
/** @type {import('../../session.js').HttpClient} */
|
|
15
|
-
jsobj: import('../../session.js').HttpClient;
|
|
16
|
-
/** @type {WebSocket} */
|
|
17
|
-
clientInt: WebSocket;
|
|
18
|
-
/**
|
|
19
|
-
* @param {{path: string}} arg
|
|
20
|
-
*/
|
|
21
|
-
createTransport({ path }: {
|
|
22
|
-
path: string;
|
|
23
|
-
}): void;
|
|
24
|
-
/**
|
|
25
|
-
* @param {string} path
|
|
26
|
-
*/
|
|
27
|
-
openWTSession(path: string): void;
|
|
28
|
-
closeClient(): void;
|
|
29
|
-
}
|
|
30
|
-
//# sourceMappingURL=browser.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["../../../../../../../main/lib/http2/browser/browser.js"],"names":[],"mappings":"AAOA;IACE;;OAEG;IACH,kBAFW,OAAO,gBAAgB,EAAE,mBAAmB,EAyBtD;IAtBC,aAA6B;IAC7B,iBAAyC;IACzC,uCACmD;IACnD,wCACoD;IAEpD,2CACiD;IACjD,yCAC2D;IAE3D,4CACkD;IAClD,0CAC6D;IAC7D,oDAAoD;IAEpD,OAFW,OAAO,kBAAkB,EAAE,UAAU,CAE1B;IACtB,wBAAwB;IAExB,WAFW,SAAS,CAEM;IAG5B;;OAEG;IACH,0BAFW;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,QAkExB;IAED;;OAEG;IACH,oBAFW,MAAM,QA2GhB;IAED,oBAGC;CACF"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export class Http2CapsuleParser extends ParserBaseHttp2 {
|
|
2
|
-
mode: string;
|
|
3
|
-
/** @type {Buffer|undefined} */
|
|
4
|
-
saveddata: Buffer | undefined;
|
|
5
|
-
/** @type {Number|undefined} */
|
|
6
|
-
rtype: number | undefined;
|
|
7
|
-
/**
|
|
8
|
-
* @param {Buffer} data
|
|
9
|
-
*/
|
|
10
|
-
parseData(data: Buffer): void;
|
|
11
|
-
remainlength: any;
|
|
12
|
-
rstreamid: number | undefined;
|
|
13
|
-
rfin: boolean | undefined;
|
|
14
|
-
/**
|
|
15
|
-
* @param{{type: Number, headerVints: Array<Number>, payload: Uint8Array|undefined}} bs
|
|
16
|
-
*/
|
|
17
|
-
writeCapsule({ type, headerVints, payload }: {
|
|
18
|
-
type: number;
|
|
19
|
-
headerVints: Array<number>;
|
|
20
|
-
payload: Uint8Array | undefined;
|
|
21
|
-
}): boolean | undefined;
|
|
22
|
-
}
|
|
23
|
-
import { ParserBaseHttp2 } from "../parserbasehttp2.js";
|
|
24
|
-
//# sourceMappingURL=capsuleparser.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"capsuleparser.d.ts","sourceRoot":"","sources":["../../../../../../../main/lib/http2/node/capsuleparser.js"],"names":[],"mappings":"AAGA;IAsBI,aAAe;IACf,+BAA+B;IAC/B,WADW,MAAM,GAAC,SAAS,CACD;IAC1B,+BAA+B;IAC/B,OADW,SAAO,SAAS,CACL;IAGxB;;OAEG;IACH,gBAFW,MAAM,QA0OhB;IA3CW,kBAA2D;IAGzD,8BAAyB;IACzB,0BAAsD;IAyCpE;;OAEG;IACH,6CAFU;QAAC,IAAI,SAAS;QAAC,WAAW,EAAE,aAAa,CAAC;QAAC,OAAO,EAAE,UAAU,GAAC,SAAS,CAAA;KAAC,uBAmBlF;CASF"}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
export class Http2WebTransportClient {
|
|
3
|
-
/**
|
|
4
|
-
* @param {import('../../types.js').NativeClientOptions} args
|
|
5
|
-
*/
|
|
6
|
-
constructor(args: import('../../types.js').NativeClientOptions);
|
|
7
|
-
port: number;
|
|
8
|
-
hostname: string;
|
|
9
|
-
serverCertificateHashes: import("../../dom.js").WebTransportHash[];
|
|
10
|
-
localPort: number | undefined;
|
|
11
|
-
allowPooling: boolean;
|
|
12
|
-
forceIpv6: boolean;
|
|
13
|
-
initialStreamFlowControlWindow: number;
|
|
14
|
-
initialSessionFlowControlWindow: number;
|
|
15
|
-
streamShouldAutoTuneReceiveWindow: boolean;
|
|
16
|
-
streamFlowControlWindowSizeLimit: number;
|
|
17
|
-
sessionShouldAutoTuneReceiveWindow: boolean;
|
|
18
|
-
sessionFlowControlWindowSizeLimit: number;
|
|
19
|
-
/** @type {import('../../session.js').HttpClient} */
|
|
20
|
-
jsobj: import('../../session.js').HttpClient;
|
|
21
|
-
createTransport(): void;
|
|
22
|
-
clientInt: import("http2").ClientHttp2Session | undefined;
|
|
23
|
-
/**
|
|
24
|
-
* @param {string} path
|
|
25
|
-
*/
|
|
26
|
-
openWTSession(path: string): void;
|
|
27
|
-
closeClient(): void;
|
|
28
|
-
}
|
|
29
|
-
//# sourceMappingURL=client.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../../../../main/lib/http2/node/client.js"],"names":[],"mappings":";AAOA;IACE;;OAEG;IACH,kBAFW,OAAO,gBAAgB,EAAE,mBAAmB,EA4BtD;IAvBC,aAAwB;IACxB,iBAAyC;IACzC,mEAAyE;IACzE,8BAAqD;IACrD,sBAA+C;IAC/C,mBAAyC;IACzC,uCACmD;IACnD,wCACoD;IAEpD,2CACiD;IACjD,yCAC2D;IAE3D,4CACkD;IAClD,0CAC6D;IAC7D,oDAAoD;IAEpD,OAFW,OAAO,kBAAkB,EAAE,UAAU,CAE1B;IAGxB,wBAwJC;IA5FC,0DAGC;IA2FH;;OAEG;IACH,oBAFW,MAAM,QAuChB;IAED,oBAEC;CACF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../main/lib/http2/node/index.js"],"names":[],"mappings":""}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
/**
|
|
3
|
-
* @typedef {import('node:http2').Http2Stream} Http2Stream
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @param{{offset: Number, buffer: Buffer, size: Number}} bs
|
|
7
|
-
*/
|
|
8
|
-
export function readVarInt(bs: {
|
|
9
|
-
offset: number;
|
|
10
|
-
buffer: Buffer;
|
|
11
|
-
size: number;
|
|
12
|
-
}): bigint | undefined;
|
|
13
|
-
/**
|
|
14
|
-
* @param{{offset: Number, buffer: Buffer, size: Number}} bs
|
|
15
|
-
* @param{Number|bigint} int
|
|
16
|
-
*/
|
|
17
|
-
export function writeVarInt(bs: {
|
|
18
|
-
offset: number;
|
|
19
|
-
buffer: Buffer;
|
|
20
|
-
size: number;
|
|
21
|
-
}, int: number | bigint): void;
|
|
22
|
-
export class ParserBaseHttp2 extends ParserBase {
|
|
23
|
-
/**
|
|
24
|
-
* @param {import('../types').ParserHttp2Init} stream
|
|
25
|
-
*/
|
|
26
|
-
constructor({ stream, nativesession, isclient, initialStreamSendWindowOffset, initialStreamReceiveWindowOffset, streamShouldAutoTuneReceiveWindow, streamReceiveWindowSizeLimit }: import('../types').ParserHttp2Init);
|
|
27
|
-
stream: import("http2").Http2Stream;
|
|
28
|
-
}
|
|
29
|
-
export type Http2Stream = import('node:http2').Http2Stream;
|
|
30
|
-
import { ParserBase } from "./parserbase.js";
|
|
31
|
-
//# sourceMappingURL=parserbasehttp2.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parserbasehttp2.d.ts","sourceRoot":"","sources":["../../../../../../main/lib/http2/parserbasehttp2.js"],"names":[],"mappings":";AAEA;;GAEG;AAEH;;GAEG;AACH,+BAFU;IAAC,MAAM,SAAS;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,IAAI,SAAQ;CAAC,sBAkBvD;AAED;;;GAGG;AACH,gCAHU;IAAC,MAAM,SAAS;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,IAAI,SAAQ;CAAC,OAC9C,SAAO,MAAM,QA0BtB;AAED;IACE;;OAEG;IACH,mLAFW,OAAO,UAAU,EAAE,eAAe,EAmE5C;IAhDC,oCAAoB;CAiDvB;0BA5HY,OAAO,YAAY,EAAE,WAAW"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"websocketcommon.d.ts","sourceRoot":"","sources":["../../../../../../main/lib/http2/websocketcommon.js"],"names":[],"mappings":"AAAA,yCAA4C"}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* // Spec
|
|
3
|
-
*/
|
|
4
|
-
export type WebTransportDatagramStats = import('./dom').WebTransportDatagramStats;
|
|
5
|
-
/**
|
|
6
|
-
* // Spec
|
|
7
|
-
*/
|
|
8
|
-
export type WebTransportStats = import('./dom').WebTransportStats;
|
|
9
|
-
/**
|
|
10
|
-
* // Spec
|
|
11
|
-
*/
|
|
12
|
-
export type WebTransportCloseInfo = import('./dom').WebTransportCloseInfo;
|
|
13
|
-
/**
|
|
14
|
-
* // Spec
|
|
15
|
-
*/
|
|
16
|
-
export type WebTransportDatagramDuplexStream = import('./dom').WebTransportDatagramDuplexStream;
|
|
17
|
-
/**
|
|
18
|
-
* // Spec
|
|
19
|
-
*/
|
|
20
|
-
export type WebTransportBidirectionalStream = import('./dom').WebTransportBidirectionalStream;
|
|
21
|
-
/**
|
|
22
|
-
* // Spec
|
|
23
|
-
*/
|
|
24
|
-
export type WebTransportSendStreamStats = import('./dom').WebTransportSendStreamStats;
|
|
25
|
-
/**
|
|
26
|
-
* // Spec
|
|
27
|
-
*/
|
|
28
|
-
export type WebTransportSendStream = import('./dom').WebTransportSendStream;
|
|
29
|
-
/**
|
|
30
|
-
* // Spec
|
|
31
|
-
*/
|
|
32
|
-
export type WebTransportReceiveStreamStats = import('./dom').WebTransportReceiveStreamStats;
|
|
33
|
-
/**
|
|
34
|
-
* // Spec
|
|
35
|
-
*/
|
|
36
|
-
export type WebTransportReceiveStream = import('./dom').WebTransportReceiveStream;
|
|
37
|
-
/**
|
|
38
|
-
* // Spec
|
|
39
|
-
*/
|
|
40
|
-
export type WebTransportHash = import('./dom').WebTransportHash;
|
|
41
|
-
/**
|
|
42
|
-
* // Spec
|
|
43
|
-
*/
|
|
44
|
-
export type WebTransportOptions = import('./dom').WebTransportOptions;
|
|
45
|
-
/**
|
|
46
|
-
* Public API
|
|
47
|
-
*/
|
|
48
|
-
export type WebTransportReliabilityMode = import('./dom').WebTransportReliabilityMode;
|
|
49
|
-
/**
|
|
50
|
-
* // Spec
|
|
51
|
-
*/
|
|
52
|
-
export type WebTransportSession = import('./types').WebTransportSessionImpl;
|
|
53
|
-
/**
|
|
54
|
-
* // Spec
|
|
55
|
-
*/
|
|
56
|
-
export type HttpServerInit = import('./types').HttpServerInit;
|
|
57
|
-
export { WebTransportPonyfill, WebTransportPolyfill } from "./webtransport.browser.js";
|
|
58
|
-
//# sourceMappingURL=index.browser.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.browser.d.ts","sourceRoot":"","sources":["../../../../../main/lib/index.browser.js"],"names":[],"mappings":";;;wCAOa,OAAO,OAAO,EAAE,yBAAyB;;;;gCACzC,OAAO,OAAO,EAAE,iBAAiB;;;;oCACjC,OAAO,OAAO,EAAE,qBAAqB;;;;+CACrC,OAAO,OAAO,EAAE,gCAAgC;;;;8CAChD,OAAO,OAAO,EAAE,+BAA+B;;;;0CAC/C,OAAO,OAAO,EAAE,2BAA2B;;;;qCAC3C,OAAO,OAAO,EAAE,sBAAsB;;;;6CACtC,OAAO,OAAO,EAAE,8BAA8B;;;;wCAC9C,OAAO,OAAO,EAAE,yBAAyB;;;;+BACzC,OAAO,OAAO,EAAE,gBAAgB;;;;kCAChC,OAAO,OAAO,EAAE,mBAAmB;;;;0CACnC,OAAO,OAAO,EAAE,2BAA2B;;;;kCAG3C,OAAO,SAAS,EAAE,uBAAuB;;;;6BACzC,OAAO,SAAS,EAAE,cAAc"}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
export { WebTransport } from "./webtransport.node.js";
|
|
2
|
-
/**
|
|
3
|
-
* // Spec
|
|
4
|
-
*/
|
|
5
|
-
export type WebTransportDatagramStats = import('./dom').WebTransportDatagramStats;
|
|
6
|
-
/**
|
|
7
|
-
* // Spec
|
|
8
|
-
*/
|
|
9
|
-
export type WebTransportStats = import('./dom').WebTransportStats;
|
|
10
|
-
/**
|
|
11
|
-
* // Spec
|
|
12
|
-
*/
|
|
13
|
-
export type WebTransportCloseInfo = import('./dom').WebTransportCloseInfo;
|
|
14
|
-
/**
|
|
15
|
-
* // Spec
|
|
16
|
-
*/
|
|
17
|
-
export type WebTransportDatagramDuplexStream = import('./dom').WebTransportDatagramDuplexStream;
|
|
18
|
-
/**
|
|
19
|
-
* // Spec
|
|
20
|
-
*/
|
|
21
|
-
export type WebTransportBidirectionalStream = import('./dom').WebTransportBidirectionalStream;
|
|
22
|
-
/**
|
|
23
|
-
* // Spec
|
|
24
|
-
*/
|
|
25
|
-
export type WebTransportSendStreamStats = import('./dom').WebTransportSendStreamStats;
|
|
26
|
-
/**
|
|
27
|
-
* // Spec
|
|
28
|
-
*/
|
|
29
|
-
export type WebTransportSendStream = import('./dom').WebTransportSendStream;
|
|
30
|
-
/**
|
|
31
|
-
* // Spec
|
|
32
|
-
*/
|
|
33
|
-
export type WebTransportReceiveStreamStats = import('./dom').WebTransportReceiveStreamStats;
|
|
34
|
-
/**
|
|
35
|
-
* // Spec
|
|
36
|
-
*/
|
|
37
|
-
export type WebTransportReceiveStream = import('./dom').WebTransportReceiveStream;
|
|
38
|
-
/**
|
|
39
|
-
* // Spec
|
|
40
|
-
*/
|
|
41
|
-
export type WebTransportHash = import('./dom').WebTransportHash;
|
|
42
|
-
/**
|
|
43
|
-
* // Spec
|
|
44
|
-
*/
|
|
45
|
-
export type WebTransportOptions = import('./dom').WebTransportOptions;
|
|
46
|
-
/**
|
|
47
|
-
* Public API
|
|
48
|
-
*/
|
|
49
|
-
export type WebTransportReliabilityMode = import('./dom').WebTransportReliabilityMode;
|
|
50
|
-
/**
|
|
51
|
-
* // Spec
|
|
52
|
-
*/
|
|
53
|
-
export type WebTransportSession = import('./types').WebTransportSessionImpl;
|
|
54
|
-
/**
|
|
55
|
-
* // Spec
|
|
56
|
-
*/
|
|
57
|
-
export type HttpServerInit = import('./types').HttpServerInit;
|
|
58
|
-
export { HttpServer, Http3Server, Http2Server } from "./server.js";
|
|
59
|
-
//# sourceMappingURL=index.node.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.node.d.ts","sourceRoot":"","sources":["../../../../../main/lib/index.node.js"],"names":[],"mappings":";;;;wCAOa,OAAO,OAAO,EAAE,yBAAyB;;;;gCACzC,OAAO,OAAO,EAAE,iBAAiB;;;;oCACjC,OAAO,OAAO,EAAE,qBAAqB;;;;+CACrC,OAAO,OAAO,EAAE,gCAAgC;;;;8CAChD,OAAO,OAAO,EAAE,+BAA+B;;;;0CAC/C,OAAO,OAAO,EAAE,2BAA2B;;;;qCAC3C,OAAO,OAAO,EAAE,sBAAsB;;;;6CACtC,OAAO,OAAO,EAAE,8BAA8B;;;;wCAC9C,OAAO,OAAO,EAAE,yBAAyB;;;;+BACzC,OAAO,OAAO,EAAE,gBAAgB;;;;kCAChC,OAAO,OAAO,EAAE,mBAAmB;;;;0CACnC,OAAO,OAAO,EAAE,2BAA2B;;;;kCAG3C,OAAO,SAAS,EAAE,uBAAuB;;;;6BACzC,OAAO,SAAS,EAAE,cAAc"}
|
package/dist/main/lib/utils.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @template {unknown} T
|
|
3
|
-
* @returns {import('./types').Deferred<T>}
|
|
4
|
-
*/
|
|
5
|
-
export function defer<T extends unknown>(): import("./types").Deferred<T>;
|
|
6
|
-
/**
|
|
7
|
-
* @param {string} name
|
|
8
|
-
* @returns {import('./types').Logger}
|
|
9
|
-
*/
|
|
10
|
-
export function logger(name: string): import('./types').Logger;
|
|
11
|
-
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../main/lib/utils.js"],"names":[],"mappings":"AAEA;;;GAGG;AACH,0EAiBC;AAED;;;GAGG;AACH,6BAHW,MAAM,GACJ,OAAO,SAAS,EAAE,MAAM,CAQpC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"webstreams.browser.d.ts","sourceRoot":"","sources":["../../../../../main/lib/webstreams.browser.js"],"names":[],"mappings":"AAAA,6BAA6B;AAE7B,6BAFW,cAAc,CAE8B;AACvD,6BAA6B;AAE7B,6BAFW,cAAc,CAE8B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"clientsocket.d.ts","sourceRoot":"","sources":["../../../../lib/clientsocket.js"],"names":[],"mappings":";AAQA;IACE;;OAEG;IACH,kBAFW,OAAO,4BAA4B,EAAE,oBAAoB,EAenE;IATC,aAAwB;IACxB,aAAqC;IACrC,8BAAgC;IAChC,mBAAyC;IACzC,gEAAgE;IAEhE,OAFW,OAAO,8BAA8B,EAAE,UAAU,CAEtC;IAEtB,gEAAgB;IAGlB,aAyCC;IAtCK,iDAAqB;IAwC3B,oBAQC;CACF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/index.js"],"names":[],"mappings":"AA0BA,2BAAuC;AACvC,6BAA6C;AAOtC;;;qBAON;AAED,0CAAuE;AACvE,0CAAuE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../main/dist/main/lib/dom.d.ts","../../../../../main/dist/transports/http3-quiche/lib/types.d.ts","../../../../../main/dist/transports/http3-quiche/lib/utils.d.ts","../../../../../node_modules/@types/node/assert.d.ts","../../../../../node_modules/@types/node/assert/strict.d.ts","../../../../../node_modules/buffer/index.d.ts","../../../../../node_modules/undici-types/header.d.ts","../../../../../node_modules/undici-types/readable.d.ts","../../../../../node_modules/undici-types/file.d.ts","../../../../../node_modules/undici-types/fetch.d.ts","../../../../../node_modules/undici-types/formdata.d.ts","../../../../../node_modules/undici-types/connector.d.ts","../../../../../node_modules/undici-types/client.d.ts","../../../../../node_modules/undici-types/errors.d.ts","../../../../../node_modules/undici-types/dispatcher.d.ts","../../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../../node_modules/undici-types/global-origin.d.ts","../../../../../node_modules/undici-types/pool-stats.d.ts","../../../../../node_modules/undici-types/pool.d.ts","../../../../../node_modules/undici-types/handlers.d.ts","../../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../../node_modules/undici-types/agent.d.ts","../../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../../node_modules/undici-types/mock-agent.d.ts","../../../../../node_modules/undici-types/mock-client.d.ts","../../../../../node_modules/undici-types/mock-pool.d.ts","../../../../../node_modules/undici-types/mock-errors.d.ts","../../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../../node_modules/undici-types/api.d.ts","../../../../../node_modules/undici-types/cookies.d.ts","../../../../../node_modules/undici-types/patch.d.ts","../../../../../node_modules/undici-types/filereader.d.ts","../../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../../node_modules/undici-types/websocket.d.ts","../../../../../node_modules/undici-types/content-type.d.ts","../../../../../node_modules/undici-types/cache.d.ts","../../../../../node_modules/undici-types/interceptors.d.ts","../../../../../node_modules/undici-types/index.d.ts","../../../../../node_modules/@types/node/globals.d.ts","../../../../../node_modules/@types/node/async_hooks.d.ts","../../../../../node_modules/@types/node/buffer.d.ts","../../../../../node_modules/@types/node/child_process.d.ts","../../../../../node_modules/@types/node/cluster.d.ts","../../../../../node_modules/@types/node/console.d.ts","../../../../../node_modules/@types/node/constants.d.ts","../../../../../node_modules/@types/node/crypto.d.ts","../../../../../node_modules/@types/node/dgram.d.ts","../../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../../node_modules/@types/node/dns.d.ts","../../../../../node_modules/@types/node/dns/promises.d.ts","../../../../../node_modules/@types/node/domain.d.ts","../../../../../node_modules/@types/node/dom-events.d.ts","../../../../../node_modules/@types/node/events.d.ts","../../../../../node_modules/@types/node/fs.d.ts","../../../../../node_modules/@types/node/fs/promises.d.ts","../../../../../node_modules/@types/node/http.d.ts","../../../../../node_modules/@types/node/http2.d.ts","../../../../../node_modules/@types/node/https.d.ts","../../../../../node_modules/@types/node/inspector.d.ts","../../../../../node_modules/@types/node/module.d.ts","../../../../../node_modules/@types/node/net.d.ts","../../../../../node_modules/@types/node/os.d.ts","../../../../../node_modules/@types/node/path.d.ts","../../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../../node_modules/@types/node/process.d.ts","../../../../../node_modules/@types/node/punycode.d.ts","../../../../../node_modules/@types/node/querystring.d.ts","../../../../../node_modules/@types/node/readline.d.ts","../../../../../node_modules/@types/node/readline/promises.d.ts","../../../../../node_modules/@types/node/repl.d.ts","../../../../../node_modules/@types/node/stream.d.ts","../../../../../node_modules/@types/node/stream/promises.d.ts","../../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../../node_modules/@types/node/stream/web.d.ts","../../../../../node_modules/@types/node/string_decoder.d.ts","../../../../../node_modules/@types/node/test.d.ts","../../../../../node_modules/@types/node/timers.d.ts","../../../../../node_modules/@types/node/timers/promises.d.ts","../../../../../node_modules/@types/node/tls.d.ts","../../../../../node_modules/@types/node/trace_events.d.ts","../../../../../node_modules/@types/node/tty.d.ts","../../../../../node_modules/@types/node/url.d.ts","../../../../../node_modules/@types/node/util.d.ts","../../../../../node_modules/@types/node/v8.d.ts","../../../../../node_modules/@types/node/vm.d.ts","../../../../../node_modules/@types/node/wasi.d.ts","../../../../../node_modules/@types/node/worker_threads.d.ts","../../../../../node_modules/@types/node/zlib.d.ts","../../../../../node_modules/@types/node/globals.global.d.ts","../../../../../node_modules/@types/node/index.d.ts","../../../../../main/dist/main/lib/http2/flowcontroller.d.ts","../../../../../main/dist/main/lib/webstreams.d.ts","../../../../../main/dist/main/lib/client.d.ts","../../../../../main/dist/main/lib/server.d.ts","../../../../../main/dist/main/lib/session.d.ts","../../../../../main/dist/main/lib/stream.d.ts","../../../../../main/dist/main/lib/http2/stream.d.ts","../../../../../main/dist/main/lib/http2/parserbase.d.ts","../../../../../main/dist/main/lib/http2/session.d.ts","../../../../../main/dist/main/lib/types.d.ts","../../../../../main/dist/transports/http3-quiche/lib/socket.d.ts","../../../lib/clientsocket.js","../../../../../main/dist/transports/http3-quiche/lib/serversocket.d.ts","../../../lib/index.js","../../../../../main/lib/error.js","../../../../../main/dist/main/lib/webtransportbase.d.ts","../../../../../main/dist/main/lib/webtransport.browser.d.ts","../../../../../main/lib/index.browser.js","../../../../../main/dist/main/lib/webtransport.node.d.ts","../../../../../main/lib/index.node.js","../../../../../node_modules/@types/ms/index.d.ts","../../../../../node_modules/@types/debug/index.d.ts","../../../../../main/lib/utils.js","../../../../../main/lib/webstreams.browser.js","../../../../../main/lib/http2/parserbasehttp2.js","../../../../../main/lib/http2/websocketcommon.js","../../../../../main/dist/main/lib/http2/browser/browserparser.d.ts","../../../../../main/lib/http2/browser/browser.js","../../../../../main/lib/http2/node/capsuleparser.js","../../../../../main/lib/http2/node/client.js","../../../../../main/dist/main/lib/http2/node/websocketparser.d.ts","../../../../../main/dist/main/lib/http2/node/server.d.ts","../../../../../main/lib/http2/node/index.js","../../../../../node_modules/@types/chai/index.d.ts","../../../../../node_modules/@types/chai-as-promised/index.d.ts","../../../../../node_modules/@types/dirty-chai/index.d.ts","../../../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../../node_modules/@types/json5/index.d.ts","../../../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"06543437492eb52b084f09a04afd0efdf2cd830f6e56e1bc2fb0cb2a83302e5a","af17e6122de7887bbc0d70406626629cf15f9bf9bb97ac3381f9939d57e20298","2a1282b2aa90e88219ab249a4b49ae3d8ffb6a4568272a7fbf1b7c449ad9742e","3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"b6a4a51bc749ad882c33d98563ff5a94716ca884bfde949a8c97bad530e4ee2c","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","fe39ceafa361b6d339b518936275eff89a77e7dfe92f2efa5fb97abf9a95ca49",{"version":"4009dd21843fe4a62d1d97b584a2937ca9f045df6fbd65c8b264d8dd04b656fd","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","c9e6ea53a25729dbb5b5bb6960db4387df2f8e88add9cbf36b6ff590481134f9","3e95e6310d49db6d575ac6c2896c02761426aa5aab0b18169f971151c709b770","7eb0662b995994db248290a0f0a1d8ed685991a162ff9eb4dee36f099cccd0d9","bea5c9fc0843a6961411ab4a04df856a8372448bc0d180da0c3a054ff31044b8","715873cecbfcebb49f293f0521bd0955d6298486e2eeb9c7bbf5e9f20a6ed152","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"6c7b9d2139abd8f2e83ed8fa018c3799ab3187755a6665621feb6e93d3429ac3","affectsGlobalScope":true},"a019c9782ea4e21c83881c780cebce8ad86e3f78122619336eacbd87e47fe674","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","5899ab1898582115c432cccef063298f75477bf2cebe5473360043fddd67bcc6","6b97f4106d72ae6b4ebf4e46d2fe90f4d04dd04b3dbff6e294572440a428209d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","48fedd2f8549a2ae7e62f30fdb015779c2a7b536760730c5269406cd3d17cab2",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"c874bfffe38a94b129077eaba4e26575972d545d5d04cd64e90c02d2c029ead6","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"4ee9304173804c2c6dff4fcb8ad900619a4078b30d37f7e455236836e8e87a45","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","6e4b2642721462bf62d19593770659f268a6ca1e9fd15543747efb3ac471cee3","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","cdaaf046791d7d588f28f32197c5d6acc43343e62540a67eed194c9c20535fdc","4b1ff655bd8edd879dd4f04f15338ce0109f58ccb424165d44fa07e7ea39c4bf",{"version":"6fa61015444e843013443f2e5ca6bee5f033cbf361f953fd932abb0c029b73b2","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","24b8c93eb91a64a6fbb877a295cfac4c10aa4660599970c954a99d33697534a3","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"ca619678b887ae262316673b55bb358c517593d3b6b96c1271972716c699da32","affectsGlobalScope":true},{"version":"40ed27386f21a739bd0d2e2cfed563760588f2aeaa7ad149c1bf1454a7ec743a","affectsGlobalScope":true},"d1ef1d8516286380fd0a6f498f1650d374a8cb5f03d91633b6124e4fb8fb131d","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","2641e5e19268b6f5038ad48a6e2598965301df8a77c48c99d8df760a6a154204",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","c9915a1ee4c07bdceb8ecb983e7364b2042ded652d808fc6297f4791e74e8b78","898228affb58d7c169bb9962bf5a4648b0c9f511d3ef41652be670d205ff71d2","99792f77f52ea24e523209c02733d082287d284650933d59aca5e83f3b72b407","ce76a95e6d30d7cbfc2e0d2238fe7049085ec204c64ef4bf059c16ccde0d54c9","2f844a32c121efd8310aeb7de28d3f26e9201f4ef56d855cc7ddcfa5705de73d","f83376fdf759b8aea1062b923dfef3ceae4a22a5677a8caea2d6b745bfb48ad2","fdbbe95ab071fda518c48f9a8e543ee5da5f4956d4491248169391a1db1a276f","9c54ca6ff0d8f1596fb075fe5b28a29321cb8a551332b5203bce9ea8b9781225","66d884201a505e15150425c3b8b2f8018c9bbe1ebfab5b9df4e5386a03d25f4d","521e684d3e2f090f5c0f5acf8e94a045fbbe223fb1dc687f77a3bd032ab1cda0","5c39104475a43b1906df80f0524b03973778bad7d5175f0a0c3a72f9cbbe0783",{"version":"29e8bd2ad1a898f11c10c458408561cc169de729e5f654150cb4269aa0927c0a","signature":"68bfea5e9e81fba63fb2b2f0741c7764fe7032c978937edeb5efb4b7e024e234"},"82172157199d44493ffd9a713ef3794f614490b05a3d9894c1197cb0f06fdc4a",{"version":"089cdffc4b79a5323e34817fc82f43e0d43abbb45a6043917aac02fedcba433b","signature":"877582b6d874e2cb021bc44ca81670cafaca7bae6c5e884de3dc1934bdcf8404"},{"version":"c4352126dc08b95a3c8223ea5e9e88181926d2c5fc48c0bba88ae59e2185dca2","signature":"63a5cc9a046de27986cbebbae2abe65b02dc872b3bf2e5c3016f87fcde7fbf6c"},"e8a1728b57d46f97dbc50824e15387b55b8934f0f62dd17498523082d1198c39","54f9701119ec3cdc712aa66d3fa7d56f15cac8daf39baec52161c629a6906a4a",{"version":"ced9a92cc10f37f5e5404ce0a9f3a9cbbf4437cd42cad653c6c42d117c7bbcd8","signature":"5046cfb2433ec4266d7d43d7a9e37eec06910ec03d874705ddaedbde0c399b81"},"27a16d825cd1d35b3c1f637179bba10300acaf7e9938ce85c71276c3f481472a",{"version":"d6418e84acd80f7992ec99561c92443a454ae7ba88014779e1822345dfddff5d","signature":"a5e5e09e1a2fa50805e49ead553ce6bbc0a900ab1c1529da36a1125c8cde636c"},"68cc8d6fcc2f270d7108f02f3ebc59480a54615be3e09a47e14527f349e9d53e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1",{"version":"ae91e0d01ed4660d98c3d6e13ea4702a644c845e4da567ea4f60186be03a807c","signature":"c9c95f3a911f293a7f0543489e4e9f5cbae5c2a48512f2558f410e837954c84a"},{"version":"c1fbd353a499bbee666f6a4df772fe3e7ecca074967691f8612b7abfc63c6126","signature":"ff7ccdd97c6146e8c18b258f38819e32a65c67372e6d8e95c7cbdde1b08a63c0"},{"version":"6381c8e604f30d7f5fcd176f1aa246df6a22fc6a8cdbc2ef9bdbd736eb948692","signature":"dc6fb8b79c5ebd64ff76b2d092817d7866266d461b36160fa2c26e9bd1c3cb50"},{"version":"f59b7d07889ee74c3989a3bbdb375588c5ffeecb786beeaa8ce7e6d8bab33733","signature":"6b277559ffb2accd5335c0856efd487806e0172335c8ec2e4dc846a3fd21bce9"},"ec5c5a9970831a8fd1a33f75a2ea6720ec44f05ec9baef9a83ae9312e47b082e",{"version":"41d9abef63d1bff758812f7e929951685fa5aac2bf8025c8aebcd766ce835515","signature":"2c3a4a44a47ee674a2d2ad23992c3ac3248afa2d4cbe303dd1db33a1cbdfdc67"},{"version":"3984e3c9b376a5b5a00131b4c086a895c0249cbd87520a39ec7818fd1d71e4c5","signature":"cdde30d7bfd04f9f3485c384e3b10a3f9c8318c1eeccf3b16a9672d0a026cc86"},{"version":"5556b21788b0488ea307087c4f4753898937121f21d2c9a112f6961abcc73fce","signature":"30d9267115c04d64dda0edcad1c8ebce39b29fa949bf69d1099839e7ffec6c46"},"d4bc3052dc0efa304e13d754632ddce80133af0585f86ba7837ebb81cf0b9882","b6c4c4ad6c9222ccf6a64981d51484bb4d8fba6c06106ff5dcd0eca6031b08b0",{"version":"84a00d85759932d524cab5dfebb0cd05c88aced4732fd96e3bf00076dafe6fd8","signature":"c35a5a91b50646cd32d63cf79f7a48febc7c880dbc811d924f2b0244a57aa064"},{"version":"4a2c144ea6f441e9616ec77fe9b1009b0cdf6db0cd9727b8d99623975cd6c693","affectsGlobalScope":true},{"version":"86e56d97b13ef0a58bc9c59aee782ae7d47d63802b5b32129ec5e5d62c20dbfa","affectsGlobalScope":true},{"version":"e78f77d6773a6fe045e871b11f905b1578f1591f6406e2d7e675fb38e30f5d38","affectsGlobalScope":true},"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true}],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":7,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitReturns":false,"noUnusedLocals":true,"noUnusedParameters":false,"outDir":"../..","removeComments":false,"rootDir":"../../../../..","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":7},"fileIdsList":[[131,143,148],[131],[131,146,148],[131,148],[105,109,131,138,143,148,169],[105,131,163],[131,145,148],[105,131,138,139,146,148],[131,139,144,146,148],[122,131,138,143,148],[49,122,131,138,140,141,142,144,148],[49,122,131,138,143,148],[49,105,131,138,141,146,147],[122,131],[49,122,131,153,154],[49,122,131,154],[49,122,131,143,148],[97,131,143,149],[50,95,131,148],[49,131],[50,131],[131,143,147,148,161,164,165],[131,146,148,163],[105,127,131,143,147,148,161,167],[131,168,170],[105,131,146,148],[49,131,148,155],[49,131,142,148,157],[131,148,160],[131,172],[131,159],[131,172,173],[52,131],[88,131],[89,94,122,131],[90,101,102,109,119,130,131],[90,91,101,109,131],[92,131],[93,94,102,110,131],[94,119,127,131],[95,97,101,109,131],[96,131],[97,98,131],[101,131],[99,101,131],[88,101,131],[101,102,103,119,130,131],[101,102,103,116,119,122,131],[86,131,135],[97,101,104,109,119,130,131],[101,102,104,105,109,119,127,130,131],[104,106,119,127,130,131],[52,53,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137],[101,107,131],[108,130,131,135],[97,101,109,119,131],[110,131],[111,131],[88,112,131],[113,129,131,135],[114,131],[115,131],[101,116,117,131],[116,118,131,133],[89,101,119,120,121,122,131],[89,119,121,131],[119,120,131],[123,131],[88,119,131],[101,125,126,131],[125,126,131],[94,109,119,127,131],[128,131],[109,129,131],[89,104,115,130,131],[94,131],[119,131,132],[108,131,133],[131,134],[89,94,101,103,112,119,130,131,133,135],[119,131,136],[63,67,130,131],[63,119,130,131],[58,131],[60,63,127,130,131],[109,127,131],[131,138],[58,131,138],[60,63,109,130,131],[55,56,59,62,89,101,119,130,131],[55,61,131],[59,63,89,122,130,131,138],[89,131,138],[79,89,131,138],[57,58,131,138],[63,131],[57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,131],[63,70,71,131],[61,63,71,72,131],[62,131],[55,58,63,131],[63,67,71,72,131],[67,131],[61,63,66,130,131],[55,60,61,63,67,70,131],[89,119,131],[58,63,79,89,131,135,138],[51,95,98,131,143,148,149],[51,102,108,111,113,130,131,150,151],[143,148],[49,105,143,148],[105,148],[49,148],[148],[97,143,148]],"referencedMap":[[141,1],[49,2],[165,3],[139,4],[170,5],[169,6],[146,7],[147,8],[145,9],[142,10],[143,11],[144,12],[148,13],[140,14],[155,15],[157,16],[154,17],[151,18],[149,19],[50,20],[51,21],[153,2],[166,22],[167,23],[168,24],[171,25],[163,26],[164,2],[156,27],[158,28],[161,29],[162,2],[173,30],[172,2],[160,31],[174,32],[175,2],[176,2],[177,2],[159,2],[52,33],[53,33],[88,34],[89,35],[90,36],[91,37],[92,38],[93,39],[94,40],[95,41],[96,42],[97,43],[98,43],[100,44],[99,45],[101,46],[102,47],[103,48],[87,49],[137,2],[104,50],[105,51],[106,52],[138,53],[107,54],[108,55],[109,56],[110,57],[111,58],[112,59],[113,60],[114,61],[115,62],[116,63],[117,63],[118,64],[119,65],[121,66],[120,67],[122,14],[123,68],[124,69],[125,70],[126,71],[127,72],[128,73],[129,74],[130,75],[131,76],[132,77],[133,78],[134,79],[135,80],[136,81],[54,2],[9,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[35,2],[32,2],[33,2],[34,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[8,2],[47,2],[44,2],[45,2],[46,2],[1,2],[48,2],[70,82],[77,83],[69,82],[84,84],[61,85],[60,86],[83,87],[78,88],[81,89],[63,90],[62,91],[58,92],[57,93],[80,94],[59,95],[64,96],[65,2],[68,96],[55,2],[86,97],[85,96],[72,98],[73,99],[75,100],[71,101],[74,102],[79,87],[66,103],[67,104],[76,105],[56,106],[82,107],[150,108],[152,109]],"exportedModulesMap":[[141,1],[49,2],[165,3],[139,4],[170,5],[169,6],[146,7],[147,8],[145,9],[142,10],[143,11],[144,12],[148,13],[140,14],[155,15],[157,16],[154,17],[151,18],[149,19],[50,20],[51,21],[166,110],[168,111],[163,112],[156,113],[158,113],[161,114],[173,30],[172,2],[160,31],[174,32],[175,2],[176,2],[177,2],[159,2],[52,33],[53,33],[88,34],[89,35],[90,36],[91,37],[92,38],[93,39],[94,40],[95,41],[96,42],[97,43],[98,43],[100,44],[99,45],[101,46],[102,47],[103,48],[87,49],[137,2],[104,50],[105,51],[106,52],[138,53],[107,54],[108,55],[109,56],[110,57],[111,58],[112,59],[113,60],[114,61],[115,62],[116,63],[117,63],[118,64],[119,65],[121,66],[120,67],[122,14],[123,68],[124,69],[125,70],[126,71],[127,72],[128,73],[129,74],[130,75],[131,76],[132,77],[133,78],[134,79],[135,80],[136,81],[54,2],[9,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[35,2],[32,2],[33,2],[34,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[8,2],[47,2],[44,2],[45,2],[46,2],[1,2],[48,2],[70,82],[77,83],[69,82],[84,84],[61,85],[60,86],[83,87],[78,88],[81,89],[63,90],[62,91],[58,92],[57,93],[80,94],[59,95],[64,96],[65,2],[68,96],[55,2],[86,97],[85,96],[72,98],[73,99],[75,100],[71,101],[74,102],[79,87],[66,103],[67,104],[76,105],[56,106],[82,107],[150,115]],"semanticDiagnosticsPerFile":[141,49,165,139,170,169,146,147,145,142,143,144,148,140,155,157,154,151,149,50,51,153,166,167,168,171,163,164,156,158,161,162,173,172,160,174,175,176,177,159,52,53,88,89,90,91,92,93,94,95,96,97,98,100,99,101,102,103,87,137,104,105,106,138,107,108,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,54,9,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,70,77,69,84,61,60,83,78,81,63,62,58,57,80,59,64,65,68,55,86,85,72,73,75,71,74,79,66,67,76,56,82,150,152],"latestChangedDtsFile":"../../main/lib/http2/node/index.d.ts"},"version":"4.9.5"}
|
|
File without changes
|
|
File without changes
|