- Jun 25, 2020
-
-
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
-
Tatsuhiro Tsujikawa authored
-
- May 23, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- May 22, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- May 21, 2020
-
-
Tatsuhiro Tsujikawa authored
Deal with initial_scid, retry_scid, and original_dcid. We need to set and get QUIC transport parameters timely manner. Therefore, transport parameter operations are now done by ngtcp2_crypto library. Applications do not need to do set it manually. Added several callback function implementations to ngtcp2_crypto library which can be directly passed to ngtcp2_callbacks: client_initial, recv_retry, and recv_client_initial. Installation of initial packet number space encryption keys is now handled by ngtcp2_crypto library. They are done in ngtcp2_crypto_client_initial_cb, ngtcp2_crypto_recv_retry_cb and ngtcp2_crypto_recv_client_initial_cb.
-
- May 13, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- May 05, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- May 03, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- May 01, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Apr 29, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- Apr 26, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Apr 24, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Apr 19, 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
-
- Mar 12, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Mar 08, 2020
-
-
Tatsuhiro Tsujikawa authored
-
- Mar 03, 2020
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
Remove conn and user_data from encrypt/decrypt/hp_mask callbacks so that they can be used without conn.
-
- Feb 28, 2020
-
-
Tatsuhiro Tsujikawa authored
-