Ganesh Murthy

Results 6 issues of Ganesh Murthy

I periodically send PING frames to a http2 server to keep the connection open. The server in this case is nghttpd. I also send other traffic to the server like...

I open up a connection to a quart http2 server, and send several http2 requests one after another over the same connection. After servicing about 5 or 6 requets, hypercorn...

Is there a way to use nghttp2 to only look at the response to find response headers ? I have the response data in my buffers that I want to...

Following is my read_callback ``` ssize_t read_callback(nghttp2_session *session, int32_t stream_id, uint8_t *buf, size_t length, uint32_t *data_flags, nghttp2_data_source *source, void *user_data) { pn_raw_buffer_t *raw_buff = source->ptr; size_t raw_buff_size = raw_buff->size; qdr_http_connection_t...

I am a server and I call nghttp2_session_mem_recv() with the data sent from a client (the client is the curl program making a HEAD request like this -- *curl 127.0.0.1:9000...