- Aug 23, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- Aug 20, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Aug 05, 2020
-
-
Tatsuhiro Tsujikawa authored
Remove conn and user_data from ngtcp2_rand in order to use it before conn is initialized.
-
Tatsuhiro Tsujikawa authored
-
- Aug 04, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- Aug 02, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Jul 15, 2020
-
-
Tatsuhiro Tsujikawa authored
Pass struct sockaddr to ngtcp2 so that it knows how to deal with address change in more detailed manner (e.g., just compare IP address without port).
-
- Jun 29, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- Jun 28, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Jun 26, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Jun 25, 2020
-
-
Tatsuhiro Tsujikawa authored
This commit fixes the assertion failure which happens when acknowledgement of earlier packet increases CRYPTO offset. Previously, the offset is always the first CRYPTO frame offset in the queue (pktns->crypto.tx.frq). But passing this into ngtcp2_pkt_crypto_max_datalen() underestimates the space because acknowledgement might increase offset; it increases the required space to serialize offset.
-
Tatsuhiro Tsujikawa authored
-
- Jun 11, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Jun 10, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Jun 07, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
This commit introduces ngtcp2_stream_data_flags. The signature of ngtcp2_recv_stream_data is reworked. More specifically, flags parameter is added. The fin parameter is removed and it is replaced with NGTCP2_STREAM_DATA_FLAG_FIN flag. NGTCP2_STREAM_DATA_FLAG_0RTT flag is added to indicate that the data might be replayed.
-
Tatsuhiro Tsujikawa authored
-
- Jun 05, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- May 31, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- May 30, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- May 26, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- May 23, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- May 22, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- May 05, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- May 01, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Apr 29, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Apr 26, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Apr 24, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Apr 04, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Apr 02, 2020
-
-
Tatsuhiro Tsujikawa authored
Round up cwnd left to the maximum UDP packet size to avoid small packet.
-
- Mar 29, 2020
-
-
Tatsuhiro Tsujikawa authored
This commit separates key installation function into 2 and let TLS stack install rx and tx keys separately for handshake and 1RTT keys. This change is aligned to the new BoringSSL API and GnuTLS API. I expect that OpenSSL will follow this change. It also removes side argument from crypto API if it can be inferred by ngtcp2_conn_is_server.
-
- Mar 24, 2020
-
-
Tatsuhiro Tsujikawa authored
Fixes #224
-
- Mar 22, 2020
-
-
Tatsuhiro Tsujikawa authored
This commit adds special handling for the very first Initial packet which is corrupted and discarded. If server receives such packet, it has to drop connection silently without sending any CONNECTION_CLOSE. Then valid packet might come later. Keeping connection state is harmful because corrupted packet has wrong SCID, which drops later valid packet because mismatched SCID. New error code NGTCP2_ERR_DROP_CONN is added which tells server application to drop connection silently.
-
- Mar 14, 2020
-
-
Tatsuhiro Tsujikawa authored
-