ngtcp2
ngtcp2 copied to clipboard
ngtcp2 project is an effort to implement IETF QUIC protocol
 According to rfc 9001, on the server side, handshake_complete precedes 1rtt data. In fact, there is a case where 1rtt data precedes handshake_complete. There is no error, but it...
They both call `nghttp3_conn_shutdown_stream_read`. Should we consolidate the 2 callbacks? client: https://github.com/ngtcp2/ngtcp2/blob/main/examples/client.cc#L1521-L1546 server: https://github.com/ngtcp2/ngtcp2/blob/main/examples/server.cc#L849-L886
Would it be possible to have an example echo server/client to demonstrate the bare-bones API?
I developed an client/server program based on NGTCP2. And currently face the following issue. After the connection is constructed, what I mean the handshake phase is completed. Then the client...
How can I simply add personalized transport parameters in QUIC packet? If I only need to add some variables in "client.cc" and "server.cc", or change some files like "ngtcp2_crypto.cc" in...
Following the instructions in the README will end up in a build failure because GnuTLS apparently needs special patches (see PR #225 by @ueno, issue #216). Some suggestions to improve...
After I run the Server and client, initial and handshake is being established. But the data file I am attaching wont go through. Can any one tell me what I...
Good morning, I am doing a research project about the QUIC offloading in hardware. For this reason, I would like to be able to see packet numbers (in hardware). However,...