Update doc

This commit is contained in:
Tatsuhiro Tsujikawa 2016-02-25 00:58:50 +09:00
parent 56bdfd1df2
commit 8aac5d6af2
1 changed files with 3 additions and 1 deletions

View File

@ -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) {