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
cb6aea9a
Commit
cb6aea9a
authored
3 years ago
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile with -DNDEBUG
parent
f4290c64
master
v1.46.0
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
0 deletions
+5
-0
lib/nghttp2_map.c
lib/nghttp2_map.c
+1
-0
src/h2load_quic.cc
src/h2load_quic.cc
+1
-0
src/shrpx_http3_upstream.cc
src/shrpx_http3_upstream.cc
+1
-0
src/shrpx_mruby.cc
src/shrpx_mruby.cc
+1
-0
src/shrpx_worker.cc
src/shrpx_worker.cc
+1
-0
No files found.
lib/nghttp2_map.c
View file @
cb6aea9a
...
...
@@ -189,6 +189,7 @@ static int map_resize(nghttp2_map *map, uint32_t new_tablelen,
nghttp2_map_bucket
*
new_table
;
nghttp2_map_bucket
*
bkt
;
int
rv
;
(
void
)
rv
;
new_table
=
nghttp2_mem_calloc
(
map
->
mem
,
new_tablelen
,
sizeof
(
nghttp2_map_bucket
));
...
...
This diff is collapsed.
Click to expand it.
src/h2load_quic.cc
View file @
cb6aea9a
...
...
@@ -451,6 +451,7 @@ void Client::quic_close_connection() {
break
;
default:
assert
(
0
);
abort
();
}
if
(
nwrite
<
0
)
{
...
...
This diff is collapsed.
Click to expand it.
src/shrpx_http3_upstream.cc
View file @
cb6aea9a
...
...
@@ -1842,6 +1842,7 @@ int Http3Upstream::http_acked_stream_data(Downstream *downstream,
auto
body
=
downstream
->
get_response_buf
();
auto
drained
=
body
->
drain_mark
(
datalen
);
(
void
)
drained
;
assert
(
datalen
==
drained
);
...
...
This diff is collapsed.
Click to expand it.
src/shrpx_mruby.cc
View file @
cb6aea9a
...
...
@@ -75,6 +75,7 @@ int MRubyContext::run_app(Downstream *downstream, int phase) {
break
;
default:
assert
(
0
);
abort
();
}
auto
res
=
mrb_funcall
(
mrb_
,
app_
,
method
,
1
,
env_
);
...
...
This diff is collapsed.
Click to expand it.
src/shrpx_worker.cc
View file @
cb6aea9a
...
...
@@ -1036,6 +1036,7 @@ const UpstreamAddr *Worker::find_quic_upstream_addr(const Address &local_addr) {
break
;
default:
assert
(
0
);
abort
();
}
std
::
array
<
char
,
util
::
max_hostport
>
hostport_buf
;
...
...
This diff is collapsed.
Click to expand it.
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