Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
eebfd1d
Import nghttp3 webtransport PR
martenrichter Jun 20, 2026
2f2af03
nghttp3: add wt to gyp
martenrichter Jun 20, 2026
90f1f82
Update nghttp3 webtransport
martenrichter Jul 18, 2026
820ce21
quic: Implement webtransport settings
martenrichter May 23, 2026
cdedb00
quic: Implement webtransport response and reply
martenrichter May 24, 2026
658aa72
quic: Improve webtransport options and lint
martenrichter May 25, 2026
87a3fab
quic: Make a webtransport stream
martenrichter May 30, 2026
8dc8380
quic: Implement more webtransport stuff
martenrichter Jun 10, 2026
0c45eb0
quic: Webtransport fix incoming streams
martenrichter Jun 13, 2026
ba3df09
quic: Webtransport remove debug code
martenrichter Jun 13, 2026
45dd4b8
quic: Do not try to open WT sending on remote unidirectional stream
martenrichter Jun 13, 2026
02d5c96
quic: Remove debug code
martenrichter Jun 14, 2026
373d542
quic: add session id callback to test
martenrichter Jun 20, 2026
9966955
quic: WT implement close session callback
martenrichter Jun 20, 2026
86966d3
quic: Remove debug message
martenrichter Jun 20, 2026
2f613eb
quic: Fix wake up blob
martenrichter Jun 21, 2026
4f21b57
quic: Implement webtransport close session stream
martenrichter Jun 27, 2026
2d1e43f
quic: fixes in close webtransport session
martenrichter Jul 5, 2026
904fe05
quic: Add to close capsule
martenrichter Jul 7, 2026
4c5d513
quic: Fix CloseWebtransportSessionStream
martenrichter Jul 7, 2026
ddc7cf8
quic: changes for nghttp3_conn_close_stream
martenrichter Jul 18, 2026
5d73904
quic: fix weakly weakup assignment
martenrichter Jul 18, 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