I just started learning about HTTP2.0 protocol and the nghttp2 library. I started with the examples from the project (libevent-client.c (https://nghttp2.org/documentation/tutorial-client.html) and libevent-server.c(https://nghttp2.org/documentation/tutorial-server.html)). I am trying to find a function in nghttp2 library that gives me the number of concurrent streams supported by the server in the client.
static int send_server_connection_header(http2_session_data *session_data) {
nghttp2_settings_entry iv[1] = {
{NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS, 100}};
int rv;
rv = nghttp2_submit_settings(session_data->session, NGHTTP2_FLAG_NONE, iv,
ARRLEN(iv));
if (rv != 0) {
warnx("Fatal error: %s", nghttp2_strerror(rv));
return -1;
}
return 0;
}
static int session_send(http2_session_data *session_data) {
int rv;
rv = nghttp2_session_send(session_data->session);
if (rv != 0) {
warnx("Fatal error: %s", nghttp2_strerror(rv));
return -1;
}
return 0;
}
In the eventcb callback server send settings, but where is this message received in the client?
if (send_server_connection_header(session_data) != 0 ||
session_send(session_data) != 0) {
delete_http2_session_data(session_data);
return;
}
How can I see this setting in the client?