aboutsummaryrefslogtreecommitdiffstats
path: root/epan/nghttp2/nghttp2_int.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-03-05 16:51:06 +0100
committerAnders Broman <a.broman58@gmail.com>2015-03-09 05:31:04 +0000
commitbd64823e3f20a591e78dd404f00c1bb0a5bcb919 (patch)
tree7db007ac0fcb17c2555b283c57bace0d06b34c99 /epan/nghttp2/nghttp2_int.h
parent6bc138c87a32f7f707e40eaf006128936792bb0b (diff)
HTTP2: Update to libnghttp2 0.7.5
Change-Id: Idcaf31b177b387b4a7199c8e1a9f591e3bf8a58f Reviewed-on: https://code.wireshark.org/review/7541 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/nghttp2/nghttp2_int.h')
-rw-r--r--epan/nghttp2/nghttp2_int.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/epan/nghttp2/nghttp2_int.h b/epan/nghttp2/nghttp2_int.h
index effd667cfe..3d77eaab58 100644
--- a/epan/nghttp2/nghttp2_int.h
+++ b/epan/nghttp2/nghttp2_int.h
@@ -46,7 +46,12 @@ typedef int (*nghttp2_compar)(const void *lhs, const void *rhs);
typedef enum {
NGHTTP2_ERR_CREDENTIAL_PENDING = -101,
NGHTTP2_ERR_IGN_HEADER_BLOCK = -103,
- NGHTTP2_ERR_IGN_PAYLOAD = -104
+ NGHTTP2_ERR_IGN_PAYLOAD = -104,
+ /*
+ * Invalid HTTP header field was received but it can be treated as
+ * if it was not received because of compatibility reasons.
+ */
+ NGHTTP2_ERR_IGN_HTTP_HEADER = -105,
} nghttp2_internal_error;
#endif /* NGHTTP2_INT_H */