diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2019-05-22 18:41:50 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-06-28 19:28:17 +0000 |
commit | e82a7ade8a9667f1e49067bf59010f60beda5452 (patch) | |
tree | 619ead31dfa9a20e1fcd0043e79da5fb564b9a9f /src/plugins/quic/quic.h | |
parent | f73d4c2084c9cb6df4a1f8582acef523e4ba0cb2 (diff) |
quic : Use TX event for app read notification
Type: feature
Change-Id: I1846cdeb35f079249f66a0351aa244c540923a43
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/plugins/quic/quic.h')
-rw-r--r-- | src/plugins/quic/quic.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/quic/quic.h b/src/plugins/quic/quic.h index 3ba0455d733..3ecb04f0c63 100644 --- a/src/plugins/quic/quic.h +++ b/src/plugins/quic/quic.h @@ -32,8 +32,6 @@ **/ #define QUIC_DEBUG 0 -#define QUIC_DEBUG_LEVEL_CLIENT 0 -#define QUIC_DEBUG_LEVEL_SERVER 0 #define QUIC_DEFAULT_CA_CERT_PATH "/etc/ssl/certs/ca-certificates.crt" @@ -95,6 +93,7 @@ typedef struct quic_stream_data_ { u32 ctx_id; u32 thread_index; + u32 app_rx_data_len; /* bytes received, to be read by external app */ } quic_stream_data_t; typedef struct quic_worker_ctx_ |