diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-08-05 10:19:48 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-05 14:20:56 +0200 |
commit | 4173868f663c6fe7ecd1ba2abab20381002adc6b (patch) | |
tree | 6d4dc853b2ad0f7b54a5669be2b159fb1c606e61 /lib/vquic/quiche.h | |
parent | 47645f45da29d86865275eacf05b524009902729 (diff) |
quiche: initial h3 request send/receive
Diffstat (limited to 'lib/vquic/quiche.h')
-rw-r--r-- | lib/vquic/quiche.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/vquic/quiche.h b/lib/vquic/quiche.h index cf5432962..b09359ac3 100644 --- a/lib/vquic/quiche.h +++ b/lib/vquic/quiche.h @@ -38,6 +38,8 @@ struct quic_handshake { struct quicsocket { quiche_config *cfg; quiche_conn *conn; + quiche_h3_conn *h3c; + quiche_h3_config *config; uint8_t scid[QUICHE_MAX_CONN_ID_LEN]; uint32_t version; }; |