Commit 60fe0337 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

app_helper: Print PUSH_PROMISE

parent d704b92f
......@@ -266,6 +266,11 @@ void print_frame(print_type ptype, nghttp2_frame *frame)
frame->settings.iv[i].value);
}
break;
case NGHTTP2_PUSH_PROMISE:
print_frame_attr_indent();
printf("(promised_stream_id=%d)\n",
frame->push_promise.promised_stream_id);
break;
case NGHTTP2_PING:
print_frame_attr_indent();
printf("(opaque_data=%s)\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment