Allow PING frame to be sent after GOAWAY

This commit is contained in:
Tatsuhiro Tsujikawa 2018-01-08 17:03:48 +09:00
parent 0fbb46edd6
commit acd6b40e4c
1 changed files with 3 additions and 2 deletions

View File

@ -2225,8 +2225,9 @@ static int session_prep_frame(nghttp2_session *session,
assert(session->obq_flood_counter_ > 0);
--session->obq_flood_counter_;
}
if (session_is_closing(session)) {
/* PING frame is allowed to be sent unless termination GOAWAY is
sent */
if (session->goaway_flags & NGHTTP2_GOAWAY_TERM_ON_SEND) {
return NGHTTP2_ERR_SESSION_CLOSING;
}
nghttp2_frame_pack_ping(&session->aob.framebufs, &frame->ping);