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
5a7f65f1
Commit
5a7f65f1
authored
Aug 29, 2013
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add int return value to on_data_send_callback
parent
b9d2f9b6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
11 deletions
+20
-11
lib/includes/nghttp2/nghttp2.h
lib/includes/nghttp2/nghttp2.h
+6
-1
lib/nghttp2_session.c
lib/nghttp2_session.c
+9
-7
src/HttpServer.cc
src/HttpServer.cc
+2
-1
src/app_helper.cc
src/app_helper.cc
+2
-1
src/app_helper.h
src/app_helper.h
+1
-1
No files found.
lib/includes/nghttp2/nghttp2.h
View file @
5a7f65f1
...
...
@@ -893,8 +893,13 @@ typedef int (*nghttp2_on_frame_not_send_callback)
* @functypedef
*
* Callback function invoked after DATA frame is sent.
*
* The implementation of this function must return 0 if it
* succeeds. If nonzero is returned, it is treated as fatal error and
* `nghttp2_session_recv()` and `nghttp2_session_send()` functions
* immediately return :enum:`NGHTTP2_ERR_CALLBACK_FAILURE`.
*/
typedef
void
(
*
nghttp2_on_data_send_callback
)
typedef
int
(
*
nghttp2_on_data_send_callback
)
(
nghttp2_session
*
session
,
uint16_t
length
,
uint8_t
flags
,
int32_t
stream_id
,
void
*
user_data
);
...
...
lib/nghttp2_session.c
View file @
5a7f65f1
...
...
@@ -1355,13 +1355,15 @@ static int nghttp2_session_after_frame_sent(nghttp2_session *session)
nghttp2_data
*
data_frame
;
data_frame
=
nghttp2_outbound_item_get_data_frame
(
session
->
aob
.
item
);
if
(
session
->
callbacks
.
on_data_send_callback
)
{
session
->
callbacks
.
on_data_send_callback
(
session
,
session
->
aob
.
framebuflen
-
NGHTTP2_FRAME_HEAD_LENGTH
,
data_frame
->
eof
?
data_frame
->
hd
.
flags
:
(
data_frame
->
hd
.
flags
&
(
~
NGHTTP2_FLAG_END_STREAM
)),
data_frame
->
hd
.
stream_id
,
session
->
user_data
);
if
(
session
->
callbacks
.
on_data_send_callback
(
session
,
session
->
aob
.
framebuflen
-
NGHTTP2_FRAME_HEAD_LENGTH
,
data_frame
->
eof
?
data_frame
->
hd
.
flags
:
(
data_frame
->
hd
.
flags
&
(
~
NGHTTP2_FLAG_END_STREAM
)),
data_frame
->
hd
.
stream_id
,
session
->
user_data
)
!=
0
)
{
return
NGHTTP2_ERR_CALLBACK_FAILURE
;
}
}
if
(
data_frame
->
eof
&&
(
data_frame
->
hd
.
flags
&
NGHTTP2_FLAG_END_STREAM
))
{
nghttp2_stream
*
stream
=
...
...
src/HttpServer.cc
View file @
5a7f65f1
...
...
@@ -778,7 +778,7 @@ int hd_on_data_recv_callback
}
// namespace
namespace
{
void
hd_on_data_send_callback
int
hd_on_data_send_callback
(
nghttp2_session
*
session
,
uint16_t
length
,
uint8_t
flags
,
int32_t
stream_id
,
void
*
user_data
)
{
...
...
@@ -787,6 +787,7 @@ void hd_on_data_send_callback
print_session_id
(
hd
->
session_id
());
on_data_send_callback
(
session
,
length
,
flags
,
stream_id
,
user_data
);
}
return
0
;
}
}
// namespace
...
...
src/app_helper.cc
View file @
5a7f65f1
...
...
@@ -425,7 +425,7 @@ int on_data_recv_callback
return
0
;
}
void
on_data_send_callback
int
on_data_send_callback
(
nghttp2_session
*
session
,
uint16_t
length
,
uint8_t
flags
,
int32_t
stream_id
,
void
*
user_data
)
{
...
...
@@ -433,6 +433,7 @@ void on_data_send_callback
printf
(
" send "
);
print_data_frame
(
PRINT_SEND
,
length
,
flags
,
stream_id
);
fflush
(
stdout
);
return
0
;
}
int64_t
time_delta
(
const
timeval
&
a
,
const
timeval
&
b
)
...
...
src/app_helper.h
View file @
5a7f65f1
...
...
@@ -68,7 +68,7 @@ int on_data_recv_callback
(
nghttp2_session
*
session
,
uint16_t
length
,
uint8_t
flags
,
int32_t
stream_id
,
void
*
user_data
);
void
on_data_send_callback
int
on_data_send_callback
(
nghttp2_session
*
session
,
uint16_t
length
,
uint8_t
flags
,
int32_t
stream_id
,
void
*
user_data
);
...
...
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