Commit a8eeea0b authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Initialize frame header for upgrade SETTINGS frame

parent a2bc88f6
......@@ -6067,7 +6067,8 @@ int nghttp2_session_upgrade(nghttp2_session *session,
}
if(session->server) {
memset(&frame.hd, 0, sizeof(frame.hd));
nghttp2_frame_hd_init(&frame.hd, settings_payloadlen, NGHTTP2_SETTINGS,
NGHTTP2_FLAG_NONE, 0);
frame.settings.iv = iv;
frame.settings.niv = niv;
rv = nghttp2_session_on_settings_received(session, &frame, 1 /* No ACK */);
......
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