From 74a4bd5ecd83ce1fde0dba8a642d3daaa99d916e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 7 May 2015 16:44:00 +0200 Subject: http2: store incoming h2 SETTINGS --- lib/http.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/http.h') diff --git a/lib/http.h b/lib/http.h index a2f702d02..53d2bfeba 100644 --- a/lib/http.h +++ b/lib/http.h @@ -175,6 +175,13 @@ struct HTTP { typedef int (*sending)(void); /* Curl_send */ typedef int (*recving)(void); /* Curl_recv */ +/* h2 settings for this connection */ +struct h2settings { + uint32_t max_concurrent_streams; + bool enable_push; +}; + + struct http_conn { #ifdef USE_NGHTTP2 #define H2_BINSETTINGS_LEN 80 @@ -195,6 +202,7 @@ struct http_conn { /* this is a hash of all individual streams (SessionHandle structs) */ struct curl_hash streamsh; + struct h2settings settings; #else int unused; /* prevent a compiler warning */ #endif -- cgit v1.2.3