mirror of
https://github.com/curl/curl.git
synced 2026-08-05 11:26:14 +03:00
http2: infof length in on_frame_send()
This commit is contained in:
parent
d6f1c74330
commit
077f12b0ae
1 changed files with 2 additions and 1 deletions
|
|
@ -414,7 +414,8 @@ static int on_frame_send(nghttp2_session *session,
|
|||
struct connectdata *conn = (struct connectdata *)userp;
|
||||
(void)session;
|
||||
(void)frame;
|
||||
DEBUGF(infof(conn->data, "on_frame_send() was called\n"));
|
||||
DEBUGF(infof(conn->data, "on_frame_send() was called, length = %zd\n",
|
||||
frame->hd.length));
|
||||
return 0;
|
||||
}
|
||||
static int on_frame_not_send(nghttp2_session *session,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue