Fix bug header block is not ignored as properly
This commit is contained in:
parent
ab684a9f30
commit
2402b46cf3
|
@ -3446,6 +3446,10 @@ ssize_t nghttp2_session_mem_recv(nghttp2_session *session,
|
||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
busy = 1;
|
busy = 1;
|
||||||
|
if(rv == NGHTTP2_ERR_IGN_HEADER_BLOCK) {
|
||||||
|
iframe->state = NGHTTP2_IB_IGN_HEADER_BLOCK;
|
||||||
|
break;
|
||||||
|
}
|
||||||
iframe->state = NGHTTP2_IB_READ_HEADER_BLOCK;
|
iframe->state = NGHTTP2_IB_READ_HEADER_BLOCK;
|
||||||
break;
|
break;
|
||||||
case NGHTTP2_PRIORITY:
|
case NGHTTP2_PRIORITY:
|
||||||
|
|
Loading…
Reference in New Issue