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
b143039b
Commit
b143039b
authored
Mar 31, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src: Output debug data in GOAWAY in printable ascii
Non printable ascii is printed as ".".
parent
6afb7442
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
src/app_helper.cc
src/app_helper.cc
+21
-2
No files found.
src/app_helper.cc
View file @
b143039b
...
...
@@ -325,6 +325,25 @@ const char* frame_name_ansi_esc(print_type ptype)
}
}
// namespace
namespace
{
std
::
string
ascii_dump
(
const
uint8_t
*
data
,
size_t
len
)
{
std
::
string
res
;
for
(
size_t
i
=
0
;
i
<
len
;
++
i
)
{
auto
c
=
data
[
i
];
if
(
c
>=
0x20
&&
c
<
0x7f
)
{
res
+=
c
;
}
else
{
res
+=
"."
;
}
}
return
res
;
}
}
// namespace
namespace
{
void
print_frame
(
print_type
ptype
,
const
nghttp2_frame
*
frame
)
{
...
...
@@ -431,8 +450,8 @@ void print_frame(print_type ptype, const nghttp2_frame *frame)
strstatus
(
frame
->
goaway
.
error_code
),
frame
->
goaway
.
error_code
,
static_cast
<
unsigned
int
>
(
frame
->
goaway
.
opaque_data_len
),
util
::
format_hex
(
frame
->
goaway
.
opaque_data
,
frame
->
goaway
.
opaque_data_len
).
c_str
());
ascii_dump
(
frame
->
goaway
.
opaque_data
,
frame
->
goaway
.
opaque_data_len
).
c_str
());
break
;
case
NGHTTP2_WINDOW_UPDATE
:
print_frame_attr_indent
();
...
...
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