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
8033152e
Commit
8033152e
authored
Jul 28, 2013
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable local flow control on FLOW_CONTROL_OPTIONS = 1
parent
49519a06
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
87 additions
and
18 deletions
+87
-18
lib/nghttp2_session.c
lib/nghttp2_session.c
+38
-7
tests/main.c
tests/main.c
+4
-2
tests/nghttp2_session_test.c
tests/nghttp2_session_test.c
+43
-8
tests/nghttp2_session_test.h
tests/nghttp2_session_test.h
+2
-1
No files found.
lib/nghttp2_session.c
View file @
8033152e
...
...
@@ -1908,7 +1908,7 @@ static int nghttp2_session_update_initial_window_size
&
arg
);
}
static
int
nghttp2_disable_flow_control_func
(
nghttp2_map_entry
*
entry
,
static
int
nghttp2_disable_
remote_
flow_control_func
(
nghttp2_map_entry
*
entry
,
void
*
ptr
)
{
nghttp2_session
*
session
;
...
...
@@ -1934,14 +1934,38 @@ static int nghttp2_disable_flow_control_func(nghttp2_map_entry *entry,
}
/*
* Disable
connection-level flow control and stream-level flow contro
l
* of existing streams.
* Disable
remote side connection-level flow control and stream-leve
l
*
flow control
of existing streams.
*/
static
int
nghttp2_session_disable_flow_control
(
nghttp2_session
*
session
)
static
int
nghttp2_session_disable_remote_flow_control
(
nghttp2_session
*
session
)
{
session
->
remote_flow_control
=
0
;
return
nghttp2_map_each
(
&
session
->
streams
,
nghttp2_disable_flow_control_func
,
session
);
nghttp2_disable_remote_flow_control_func
,
session
);
}
static
int
nghttp2_disable_local_flow_control_func
(
nghttp2_map_entry
*
entry
,
void
*
ptr
)
{
nghttp2_stream
*
stream
;
stream
=
(
nghttp2_stream
*
)
entry
;
stream
->
local_flow_control
=
0
;
return
0
;
}
/*
* Disable stream-level flow control in local side of existing
* streams.
*/
static
void
nghttp2_session_disable_local_flow_control
(
nghttp2_session
*
session
)
{
int
rv
;
session
->
local_flow_control
=
0
;
rv
=
nghttp2_map_each
(
&
session
->
streams
,
nghttp2_disable_local_flow_control_func
,
NULL
);
assert
(
rv
==
0
);
}
void
nghttp2_session_update_local_settings
(
nghttp2_session
*
session
,
...
...
@@ -1949,10 +1973,17 @@ void nghttp2_session_update_local_settings(nghttp2_session *session,
size_t
niv
)
{
size_t
i
;
uint8_t
old_flow_control
=
session
->
local_settings
[
NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS
];
for
(
i
=
0
;
i
<
niv
;
++
i
)
{
assert
(
iv
[
i
].
settings_id
>
0
&&
iv
[
i
].
settings_id
<=
NGHTTP2_SETTINGS_MAX
);
session
->
local_settings
[
iv
[
i
].
settings_id
]
=
iv
[
i
].
value
;
}
if
(
old_flow_control
==
0
&&
session
->
local_settings
[
NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS
])
{
nghttp2_session_disable_local_flow_control
(
session
);
}
}
int
nghttp2_session_on_settings_received
(
nghttp2_session
*
session
,
...
...
@@ -1993,7 +2024,7 @@ int nghttp2_session_on_settings_received(nghttp2_session *session,
case
NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS
:
if
(
entry
->
value
&
0x1
)
{
if
(
session
->
remote_settings
[
entry
->
settings_id
]
==
0
)
{
rv
=
nghttp2_session_disable_flow_control
(
session
);
rv
=
nghttp2_session_disable_
remote_
flow_control
(
session
);
if
(
rv
!=
0
)
{
return
rv
;
}
...
...
tests/main.c
View file @
8033152e
...
...
@@ -165,8 +165,10 @@ int main(int argc, char* argv[])
test_nghttp2_session_defer_data
)
||
!
CU_add_test
(
pSuite
,
"session_flow_control"
,
test_nghttp2_session_flow_control
)
||
!
CU_add_test
(
pSuite
,
"session_flow_control_disable"
,
test_nghttp2_session_flow_control_disable
)
||
!
CU_add_test
(
pSuite
,
"session_flow_control_disable_remote"
,
test_nghttp2_session_flow_control_disable_remote
)
||
!
CU_add_test
(
pSuite
,
"session_flow_control_disable_local"
,
test_nghttp2_session_flow_control_disable_local
)
||
!
CU_add_test
(
pSuite
,
"session_data_read_temporal_failure"
,
test_nghttp2_session_data_read_temporal_failure
)
||
!
CU_add_test
(
pSuite
,
"session_on_request_recv_callback"
,
...
...
tests/nghttp2_session_test.c
View file @
8033152e
...
...
@@ -1770,7 +1770,7 @@ void test_nghttp2_submit_settings(void)
my_user_data
ud
;
nghttp2_outbound_item
*
item
;
nghttp2_frame
*
frame
;
nghttp2_settings_entry
iv
[
3
];
nghttp2_settings_entry
iv
[
4
];
iv
[
0
].
settings_id
=
NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS
;
iv
[
0
].
value
=
50
;
...
...
@@ -1778,9 +1778,12 @@ void test_nghttp2_submit_settings(void)
iv
[
1
].
settings_id
=
NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE
;
iv
[
1
].
value
=
16
*
1024
;
iv
[
2
].
settings_id
=
NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS
;
iv
[
2
].
value
=
1
;
/* This is duplicate entry */
iv
[
2
].
settings_id
=
NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS
;
iv
[
2
].
value
=
150
;
iv
[
3
].
settings_id
=
NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS
;
iv
[
3
].
value
=
150
;
memset
(
&
callbacks
,
0
,
sizeof
(
nghttp2_session_callbacks
));
callbacks
.
send_callback
=
null_send_callback
;
...
...
@@ -1788,29 +1791,34 @@ void test_nghttp2_submit_settings(void)
nghttp2_session_server_new
(
&
session
,
&
callbacks
,
&
ud
);
CU_ASSERT
(
NGHTTP2_ERR_INVALID_ARGUMENT
==
nghttp2_submit_settings
(
session
,
iv
,
3
));
nghttp2_submit_settings
(
session
,
iv
,
4
));
/* Make sure that local settings are not changed */
CU_ASSERT
(
NGHTTP2_INITIAL_MAX_CONCURRENT_STREAMS
==
session
->
local_settings
[
NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS
]);
CU_ASSERT
(
NGHTTP2_INITIAL_WINDOW_SIZE
==
session
->
local_settings
[
NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE
]);
CU_ASSERT
(
0
==
session
->
local_settings
[
NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS
]);
/* Now sends without
3rd
one */
CU_ASSERT
(
0
==
nghttp2_submit_settings
(
session
,
iv
,
2
));
/* Now sends without
4th
one */
CU_ASSERT
(
0
==
nghttp2_submit_settings
(
session
,
iv
,
3
));
/* Make sure that local settings are changed */
CU_ASSERT
(
50
==
session
->
local_settings
[
NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS
]);
CU_ASSERT
(
16
*
1024
==
session
->
local_settings
[
NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE
]);
CU_ASSERT
(
1
==
session
->
local_settings
[
NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS
]);
CU_ASSERT
(
0
==
session
->
local_flow_control
);
item
=
nghttp2_session_get_next_ob_item
(
session
);
CU_ASSERT
(
NGHTTP2_SETTINGS
==
OB_CTRL_TYPE
(
item
));
frame
=
item
->
frame
;
CU_ASSERT
(
2
==
frame
->
settings
.
niv
);
CU_ASSERT
(
3
==
frame
->
settings
.
niv
);
CU_ASSERT
(
50
==
frame
->
settings
.
iv
[
0
].
value
);
CU_ASSERT
(
NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS
==
frame
->
settings
.
iv
[
0
].
settings_id
);
...
...
@@ -2433,7 +2441,7 @@ void test_nghttp2_session_flow_control(void)
nghttp2_session_del
(
session
);
}
void
test_nghttp2_session_flow_control_disable
(
void
)
void
test_nghttp2_session_flow_control_disable
_remote
(
void
)
{
nghttp2_session
*
session
;
nghttp2_session_callbacks
callbacks
;
...
...
@@ -2487,6 +2495,33 @@ void test_nghttp2_session_flow_control_disable(void)
nghttp2_session_del
(
session
);
}
void
test_nghttp2_session_flow_control_disable_local
(
void
)
{
nghttp2_session
*
session
;
nghttp2_session_callbacks
callbacks
;
nghttp2_stream
*
stream
;
nghttp2_settings_entry
iv
[
1
];
memset
(
&
callbacks
,
0
,
sizeof
(
nghttp2_session_callbacks
));
callbacks
.
send_callback
=
null_send_callback
;
nghttp2_session_client_new
(
&
session
,
&
callbacks
,
NULL
);
stream
=
nghttp2_session_open_stream
(
session
,
1
,
NGHTTP2_FLAG_NONE
,
NGHTTP2_PRI_DEFAULT
,
NGHTTP2_STREAM_OPENING
,
NULL
);
iv
[
0
].
settings_id
=
NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS
;
iv
[
0
].
value
=
1
;
CU_ASSERT
(
0
==
nghttp2_submit_settings
(
session
,
iv
,
sizeof
(
iv
)
/
sizeof
(
iv
[
0
])));
CU_ASSERT
(
0
==
stream
->
local_flow_control
);
CU_ASSERT
(
0
==
session
->
local_flow_control
);
nghttp2_session_del
(
session
);
}
void
test_nghttp2_session_data_read_temporal_failure
(
void
)
{
nghttp2_session
*
session
;
...
...
tests/nghttp2_session_test.h
View file @
8033152e
...
...
@@ -73,7 +73,8 @@ void test_nghttp2_session_stream_close_on_headers_push(void);
void
test_nghttp2_session_stop_data_with_rst_stream
(
void
);
void
test_nghttp2_session_defer_data
(
void
);
void
test_nghttp2_session_flow_control
(
void
);
void
test_nghttp2_session_flow_control_disable
(
void
);
void
test_nghttp2_session_flow_control_disable_remote
(
void
);
void
test_nghttp2_session_flow_control_disable_local
(
void
);
void
test_nghttp2_session_data_read_temporal_failure
(
void
);
void
test_nghttp2_session_on_request_recv_callback
(
void
);
void
test_nghttp2_session_on_stream_close
(
void
);
...
...
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