From 8aac5d6af2e081644baa74f3eb16ed234a990e17 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 25 Feb 2016 00:58:50 +0900 Subject: [PATCH] Update doc --- lib/nghttp2_frame.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/nghttp2_frame.c b/lib/nghttp2_frame.c index 3d057847..ebf2e5e6 100644 --- a/lib/nghttp2_frame.c +++ b/lib/nghttp2_frame.c @@ -191,7 +191,9 @@ void nghttp2_frame_extension_init(nghttp2_extension *frame, uint8_t type, frame->payload = payload; } -void nghttp2_frame_extension_free(nghttp2_extension *frame _U_) {} +void nghttp2_frame_extension_free(nghttp2_extension *frame _U_) { + /* should be noop for performance reason */ +} size_t nghttp2_frame_priority_len(uint8_t flags) { if (flags & NGHTTP2_FLAG_PRIORITY) {