- 04 Mar, 2016 2 commits
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
This can happen when we call throwing version of basic_stream_socket::remote_endpoint() call while client disconnected.
-
- 03 Mar, 2016 6 commits
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- 02 Mar, 2016 2 commits
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- 29 Feb, 2016 2 commits
-
-
Tatsuhiro Tsujikawa authored
This option prevents the nghttp2 library from sending PING frame with ACK flag set in the reply to incoming PING frame. To allow the application to send PING with ACK flag set, nghttp2_submit_ping() now recognizes NGHTTP2_FLAG_PING in its flags parameter.
-
Tatsuhiro Tsujikawa authored
-
- 28 Feb, 2016 14 commits
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
It is very hard to support multiple protocols in backend while retaining multiple mode settings. Therefore, we dropped modes except for default and HTTP/2 proxy mode. The other removed modes can be emulated using combinations of options. Now the backend connection is not encrypted by default. To enable encryption on backend connection, use --backend-tls option.
-
Tatsuhiro Tsujikawa authored
nghttpx: Deprecate backend-http1-connections-per-frontend in favor of backend-connections-per-frontend
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
- 27 Feb, 2016 7 commits
-
-
Tatsuhiro Tsujikawa authored
This is required to avoid session stall because of too slow frontend connection.
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
We added 2 new option instead: --frontend-http2-max-concurrent-streams and --backend-http2-max-concurrent-streams.
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
Previously, we use one Http2Session object per DownstreamAddrGroup. This is not flexible, and we have to provision how many HTTP/2 connection is required in advance. The new strategy is we add Http2Session object on demand. We measure the number of attached downstream connection object and server advertised concurrency limit. As long as former is smaller than the latter, we attach new downstream connection to it. Once the limit is reached, we create new Http2Session object. If the number lowers the limit, we start to share Http2Session object again.
-
- 25 Feb, 2016 7 commits
-
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-
Tatsuhiro Tsujikawa authored
-