From 376efe5df22dcb381fd687a0986f85035c38bed5 Mon Sep 17 00:00:00 2001 From: Nathan Skrzypczak Date: Fri, 14 Jun 2019 16:44:38 +0200 Subject: quic: fix handling of stream reset & close Type: refactor Change-Id: I4981704e3c886d90d482a1deba42633e92626743 Signed-off-by: Nathan Skrzypczak --- src/plugins/quic/quic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/quic/quic.h') 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 -- cgit 1.2.3-korg