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
c1e1a1be
Commit
c1e1a1be
authored
Mar 02, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Cast uint8_t to uint32_t to display it as numeric value
parent
979feaec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/shrpx_http2_session.cc
src/shrpx_http2_session.cc
+1
-1
No files found.
src/shrpx_http2_session.cc
View file @
c1e1a1be
...
@@ -1087,7 +1087,7 @@ int on_frame_not_send_callback(nghttp2_session *session,
...
@@ -1087,7 +1087,7 @@ int on_frame_not_send_callback(nghttp2_session *session,
{
{
auto
http2session
=
static_cast
<
Http2Session
*>
(
user_data
);
auto
http2session
=
static_cast
<
Http2Session
*>
(
user_data
);
SSLOG
(
WARNING
,
http2session
)
<<
"Failed to send control frame type="
SSLOG
(
WARNING
,
http2session
)
<<
"Failed to send control frame type="
<<
frame
->
hd
.
type
<<
", "
<<
static_cast
<
uint32_t
>
(
frame
->
hd
.
type
)
<<
"lib_error_code="
<<
lib_error_code
<<
":"
<<
"lib_error_code="
<<
lib_error_code
<<
":"
<<
nghttp2_strerror
(
lib_error_code
);
<<
nghttp2_strerror
(
lib_error_code
);
if
(
frame
->
hd
.
type
==
NGHTTP2_HEADERS
&&
if
(
frame
->
hd
.
type
==
NGHTTP2_HEADERS
&&
...
...
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