diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2021-06-24 18:30:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-24 18:30:34 +0200 |
commit | f8fe3ee5200ed7a8f594dd63f74f5fee164e9a8b (patch) | |
tree | f316b529f8ff4c08893307733af080894ff69ef3 /src/include | |
parent | 6a1fd9ad97e6226bb4d186762fefa50737270c52 (diff) |
QUIC: add basic support for fragmented Client Hello (#1216)
Only in-order and non overlapping fragments are handled
See #1195
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ndpi_typedefs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index 375739573..4b11a8078 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -841,6 +841,10 @@ struct ndpi_flow_udp_struct { /* NDPI_PROTOCOL_WIREGUARD */ u_int8_t wireguard_stage; u_int32_t wireguard_peer_index[2]; + + /* NDPI_PROTOCOL_QUIC */ + u_int8_t *quic_reasm_buf; + u_int32_t quic_reasm_buf_len; }; /* ************************************************** */ |