Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
d1793e3b
Commit
d1793e3b
authored
Feb 26, 2015
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing entry to nghttp2_strerror()
parent
05b8901d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lib/nghttp2_helper.c
lib/nghttp2_helper.c
+4
-2
No files found.
lib/nghttp2_helper.c
View file @
d1793e3b
...
...
@@ -267,8 +267,6 @@ const char *nghttp2_strerror(int error_code) {
return
"Invalid stream state"
;
case
NGHTTP2_ERR_DEFERRED_DATA_EXIST
:
return
"Another DATA frame has already been deferred"
;
case
NGHTTP2_ERR_SESSION_CLOSING
:
return
"The current session is closing"
;
case
NGHTTP2_ERR_START_STREAM_NOT_ALLOWED
:
return
"request HEADERS is not allowed"
;
case
NGHTTP2_ERR_GOAWAY_ALREADY_SENT
:
...
...
@@ -295,6 +293,10 @@ const char *nghttp2_strerror(int error_code) {
return
"Server push is disabled by peer"
;
case
NGHTTP2_ERR_DATA_EXIST
:
return
"DATA frame already exists"
;
case
NGHTTP2_ERR_SESSION_CLOSING
:
return
"The current session is closing"
;
case
NGHTTP2_ERR_HTTP_HEADER
:
return
"Invalid HTTP header field was received"
;
case
NGHTTP2_ERR_NOMEM
:
return
"Out of memory"
;
case
NGHTTP2_ERR_CALLBACK_FAILURE
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment