app_helper.cc: Handle NGHTTP2_COMPRESSION_ERROR in strstatus
This commit is contained in:
parent
bfe7a9af00
commit
31ae1fe660
|
@ -68,6 +68,8 @@ const char* strstatus(nghttp2_error_code error_code)
|
||||||
return "REFUSED_STREAM";
|
return "REFUSED_STREAM";
|
||||||
case NGHTTP2_CANCEL:
|
case NGHTTP2_CANCEL:
|
||||||
return "CANCEL";
|
return "CANCEL";
|
||||||
|
case NGHTTP2_COMPRESSION_ERROR:
|
||||||
|
return "COMPRESSION_ERROR";
|
||||||
default:
|
default:
|
||||||
return "UNKNOWN";
|
return "UNKNOWN";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue