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
ef3e2c77
Commit
ef3e2c77
authored
Sep 27, 2015
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't send WINDOW_UPDATE with 0 increment
parent
b5427d96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lib/nghttp2_helper.c
lib/nghttp2_helper.c
+1
-1
No files found.
lib/nghttp2_helper.c
View file @
ef3e2c77
...
...
@@ -215,7 +215,7 @@ int nghttp2_adjust_local_window_size(int32_t *local_window_size_ptr,
int
nghttp2_should_send_window_update
(
int32_t
local_window_size
,
int32_t
recv_window_size
)
{
return
recv_window_size
>=
local_window_size
/
2
;
return
recv_window_size
>
0
&&
recv_window_size
>
=
local_window_size
/
2
;
}
const
char
*
nghttp2_strerror
(
int
error_code
)
{
...
...
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