Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
cfef72b
Import nghttp3 webtransport PR
martenrichter Jun 20, 2026
80ebe37
nghttp3: add wt to gyp
martenrichter Jun 20, 2026
c643212
Update nghttp3 webtransport
martenrichter Jul 18, 2026
03b8225
quic: Implement webtransport settings
martenrichter May 23, 2026
e1697b4
quic: Implement webtransport response and reply
martenrichter May 24, 2026
d0d6973
quic: Improve webtransport options and lint
martenrichter May 25, 2026
58fa700
quic: Make a webtransport stream
martenrichter May 30, 2026
a6bcc5e
quic: Implement more webtransport stuff
martenrichter Jun 10, 2026
fd5dece
quic: Webtransport fix incoming streams
martenrichter Jun 13, 2026
ff35b61
quic: Webtransport remove debug code
martenrichter Jun 13, 2026
a7c84eb
quic: Do not try to open WT sending on remote unidirectional stream
martenrichter Jun 13, 2026
3b9b11f
quic: Remove debug code
martenrichter Jun 14, 2026
7c462b9
quic: add session id callback to test
martenrichter Jun 20, 2026
7e6fa64
quic: WT implement close session callback
martenrichter Jun 20, 2026
a452f3f
quic: Remove debug message
martenrichter Jun 20, 2026
2777962
quic: Fix wake up blob
martenrichter Jun 21, 2026
0e7b36a
quic: Implement webtransport close session stream
martenrichter Jun 27, 2026
9905890
quic: fixes in close webtransport session
martenrichter Jul 5, 2026
c5f8424
quic: Add to close capsule
martenrichter Jul 7, 2026
25124ed
quic: Fix CloseWebtransportSessionStream
martenrichter Jul 7, 2026
ae53ee7
quic: changes for nghttp3_conn_close_stream
martenrichter Jul 18, 2026
7a8aa8a
quic: fix weakly weakup assignment
martenrichter Jul 18, 2026
50c608e
quic: write desired size needs update on maxstream
martenrichter Jul 26, 2026
14ac13a
quic: fix fin handling, so it is broken
martenrichter Jul 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
434 changes: 432 additions & 2 deletions deps/ngtcp2/nghttp3/lib/includes/nghttp3/nghttp3.h

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions deps/ngtcp2/nghttp3/lib/includes/nghttp3/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
* Version number of the nghttp3 library release.
*/
#define NGHTTP3_VERSION "1.17.0"
#define NGHTTP3_VERSION "1.18.0-DEV"

/**
* @macro
Expand All @@ -41,6 +41,6 @@
* number, 8 bits for minor and 8 bits for patch. Version 1.2.3
* becomes 0x010203.
*/
#define NGHTTP3_VERSION_NUM 0x011100
#define NGHTTP3_VERSION_NUM 0x011200

#endif /* !defined(NGHTTP3_VERSION_H) */
3 changes: 3 additions & 0 deletions deps/ngtcp2/nghttp3/lib/nghttp3_callbacks.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ size_t nghttp3_callbackslen_version(int callbacks_version) {
switch (callbacks_version) {
case NGHTTP3_CALLBACKS_VERSION:
return sizeof(callbacks);
case NGHTTP3_CALLBACKS_V3:
return offsetof(nghttp3_callbacks, recv_settings2) +
sizeof(callbacks.recv_settings2);
case NGHTTP3_CALLBACKS_V2:
return offsetof(nghttp3_callbacks, rand) + sizeof(callbacks.rand);
case NGHTTP3_CALLBACKS_V1:
Expand Down
Loading
Loading