From d36bea8554c7d59e5a2c45587ce57545a13cee97 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 2 Aug 2014 10:40:25 +0900 Subject: [PATCH] Add debug output for HPACK decoded integer --- lib/nghttp2_hd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/nghttp2_hd.c b/lib/nghttp2_hd.c index c4bcda9d..3de03223 100644 --- a/lib/nghttp2_hd.c +++ b/lib/nghttp2_hd.c @@ -1225,6 +1225,8 @@ static ssize_t hd_inflate_read_len(nghttp2_hd_inflater *inflater, inflater->left = out; + DEBUGF(fprintf(stderr, "inflatehd: decoded integer is %u\n", out)); + return rv; }