app_helper.cc: Handle NGHTTP2_COMPRESSION_ERROR in strstatus

This commit is contained in:
Tatsuhiro Tsujikawa 2013-09-28 22:57:12 +09:00
parent bfe7a9af00
commit 31ae1fe660
1 changed files with 2 additions and 0 deletions

View File

@ -68,6 +68,8 @@ const char* strstatus(nghttp2_error_code error_code)
return "REFUSED_STREAM";
case NGHTTP2_CANCEL:
return "CANCEL";
case NGHTTP2_COMPRESSION_ERROR:
return "COMPRESSION_ERROR";
default:
return "UNKNOWN";
}