Commit ef415836 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Revert "Add missing connection error handling"

This reverts commit b7d16101.
parent 979e6c53
......@@ -4698,12 +4698,7 @@ int nghttp2_session_on_ping_received(nghttp2_session *session,
rv = nghttp2_session_add_ping(session, NGHTTP2_FLAG_ACK,
frame->ping.opaque_data);
if (rv != 0) {
if (nghttp2_is_fatal(rv)) {
return rv;
}
return session_handle_invalid_connection(session, frame,
NGHTTP2_ERR_INTERNAL, NULL);
return rv;
}
}
return session_call_on_frame_received(session, frame);
......
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