diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2019-06-14 16:44:38 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-06-18 10:10:03 +0000 |
commit | 376efe5df22dcb381fd687a0986f85035c38bed5 (patch) | |
tree | 82110fcfa004269d6545a7b141b21128a41e7b62 /src/plugins/quic/quic.h | |
parent | e849865fb8819a3980658b251a8e24595170d436 (diff) |
quic: fix handling of stream reset & close
Type: refactor
Change-Id: I4981704e3c886d90d482a1deba42633e92626743
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/quic/quic.h b/src/plugins/quic/quic.h index 3e0f45a4cd5..3ba0455d733 100644 --- a/src/plugins/quic/quic.h +++ b/src/plugins/quic/quic.h @@ -31,7 +31,7 @@ * 4 - timer events **/ -#define QUIC_DEBUG 2 +#define QUIC_DEBUG 0 #define QUIC_DEBUG_LEVEL_CLIENT 0 #define QUIC_DEBUG_LEVEL_SERVER 0 @@ -41,7 +41,7 @@ #if QUIC_DEBUG -#define QUIC_DBG(_lvl, _fmt, _args...) \ +#define QUIC_DBG(_lvl, _fmt, _args...) \ if (_lvl <= QUIC_DEBUG) \ clib_warning (_fmt, ##_args) #else |