Author: rhuijben Date: Mon Nov 9 12:59:12 2015 New Revision: 1713426 URL: http://svn.apache.org/viewvc?rev=1713426&view=rev Log: * protocols/http2_protocol.h (serf_http2_stream_t): Reduce to 32 bit as HTTP/2 doesn't support bigger windows anyway and to match the windowing on the connection level.
Modified: serf/trunk/protocols/http2_protocol.h Modified: serf/trunk/protocols/http2_protocol.h URL: http://svn.apache.org/viewvc/serf/trunk/protocols/http2_protocol.h?rev=1713426&r1=1713425&r2=1713426&view=diff ============================================================================== --- serf/trunk/protocols/http2_protocol.h (original) +++ serf/trunk/protocols/http2_protocol.h Mon Nov 9 12:59:12 2015 @@ -124,8 +124,8 @@ typedef struct serf_http2_stream_t struct serf_http2_stream_t *next; struct serf_http2_stream_t *prev; - apr_int64_t lr_window; /* local->remote */ - apr_int64_t rl_window; /* remote->local */ + apr_uint32_t lr_window; /* local->remote */ + apr_uint32_t rl_window; /* remote->local */ /* -1 until allocated. Odd is client side initiated, even server side */ apr_int32_t streamid;