Tatsuhiro Tsujikawa
e453759637
Add nghttp2_option_set_no_auto_ping_ack() option
...
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.
2016-02-29 23:39:50 +09:00
Tatsuhiro Tsujikawa
a21c87d11c
Add nghttp2_http2_strerror() to return HTTP/2 error code string
2016-02-29 23:10:20 +09:00
Tatsuhiro Tsujikawa
478fde5fef
nghttpx: Fix compile error
2016-02-29 01:16:45 +09:00
Tatsuhiro Tsujikawa
bffc0ec87a
Update doc
2016-02-29 01:00:03 +09:00
Tatsuhiro Tsujikawa
1b9b03b68f
Update man pages
2016-02-29 00:55:16 +09:00
Tatsuhiro Tsujikawa
a59445ccff
Merge branch 'nghttpx-rewrite-h2-coalesce'
2016-02-29 00:52:19 +09:00
Tatsuhiro Tsujikawa
c2ec73302d
integration: Fix tests + `gofmt`
2016-02-29 00:37:51 +09:00
Tatsuhiro Tsujikawa
284691253f
nghttpx: Use StringRef for http::create_forwarded parameter
2016-02-29 00:05:32 +09:00
Tatsuhiro Tsujikawa
124d4c9fad
src: Fix tests
2016-02-29 00:05:32 +09:00
Tatsuhiro Tsujikawa
5fbe4cc225
nghttpx: Clear upgrade_request flag when Downstream is attached to HTTP/2 backend
2016-02-28 23:21:57 +09:00
Tatsuhiro Tsujikawa
df6466cfbd
nghttpx: Update doc
2016-02-28 23:15:57 +09:00
Tatsuhiro Tsujikawa
2326337d32
nghttpx: Deprecate backend-http1-connections-per-host in favor of backend-connections-per-host
2016-02-28 22:15:49 +09:00
Tatsuhiro Tsujikawa
06921f35f3
nghttpx: Restructure mode settings
...
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.
2016-02-28 21:35:26 +09:00
Tatsuhiro Tsujikawa
44d3801760
nghttpx: Deprecate backend-http1-connections-per-frontend in favor of backend-connections-per-frontend
2016-02-28 17:11:12 +09:00
Tatsuhiro Tsujikawa
1832f78684
nghttpx: Move downstream proto to DownstreamAddrGroup
2016-02-28 16:56:14 +09:00
Tatsuhiro Tsujikawa
e7601cde8a
nghttpx: Don't share session which is already in draining state
2016-02-28 12:41:34 +09:00
Tatsuhiro Tsujikawa
36f6a009b8
nghttpx: Effectively disable backend HTTP/2 connection flow control
...
This is required to avoid session stall because of too slow frontend
connection.
2016-02-28 00:19:18 +09:00
Tatsuhiro Tsujikawa
1e1752266f
Update doc
2016-02-28 00:19:18 +09:00
Tatsuhiro Tsujikawa
aafcc55006
nghttpx: Deprecate --http2-max-concurrent-streams option
...
We added 2 new option instead: --frontend-http2-max-concurrent-streams
and --backend-http2-max-concurrent-streams.
2016-02-28 00:19:18 +09:00
Tatsuhiro Tsujikawa
c731d1fea5
nghttpx: Deprecate --backend-http2-connections-per-worker option
2016-02-28 00:19:18 +09:00
Tatsuhiro Tsujikawa
aa892e4d37
nghttpx: Share TLS session cache between HTTP/2 and HTTP/1 backend
2016-02-28 00:19:18 +09:00
Tatsuhiro Tsujikawa
8ca3e5f6ba
nghttpx: Separate Downstream address group from config to runtime
2016-02-28 00:19:18 +09:00
Tatsuhiro Tsujikawa
21007da392
nghttpx: Rewrite backend HTTP/2 connection coalesce strategy
...
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.
2016-02-28 00:19:18 +09:00
Tatsuhiro Tsujikawa
9eeac27966
makerelease.sh: Remove duplicate `git module update --init`
2016-02-26 00:57:34 +09:00
Tatsuhiro Tsujikawa
e6ff7e1e4a
Bump up version number to 1.9.0-DEV
2016-02-26 00:53:42 +09:00
Tatsuhiro Tsujikawa
d1f9f9a3aa
makerelease.sh: Add autoreconf
2016-02-26 00:00:52 +09:00
Tatsuhiro Tsujikawa
2415a22757
h2load: Fix uninitialized fields
2016-02-26 00:00:24 +09:00
Tatsuhiro Tsujikawa
887d4d2a41
Update bash_completion
2016-02-25 23:35:44 +09:00
Tatsuhiro Tsujikawa
1c8e625045
Update man pages
2016-02-25 23:35:23 +09:00
Tatsuhiro Tsujikawa
36e931e0d7
Bump up version number to 1.8.0, LT revision to 19:0:5
2016-02-25 23:33:16 +09:00
Tatsuhiro Tsujikawa
31d4077638
Remove files copied in the rule for apiref.rst target
2016-02-25 23:18:21 +09:00
Tatsuhiro Tsujikawa
c098b4ac70
nghttpx: Remove --backend-tls-session-cache-per-worker option
2016-02-25 22:46:25 +09:00
Tatsuhiro Tsujikawa
32446a5197
Revert "Update doc"
...
This reverts commit 8aac5d6af2
.
2016-02-25 21:19:38 +09:00
Tatsuhiro Tsujikawa
40c1b29f36
Handle extension frame in session_inbound_frame_reset
2016-02-25 21:18:59 +09:00
Tatsuhiro Tsujikawa
bc933e9981
src: Use lowercase to show it is not the name of frame
2016-02-25 21:18:09 +09:00
Tatsuhiro Tsujikawa
ba34e911e1
Merge branch 'simple-extensions'
2016-02-25 01:00:35 +09:00
Tatsuhiro Tsujikawa
8aac5d6af2
Update doc
2016-02-25 00:58:50 +09:00
Tatsuhiro Tsujikawa
56bdfd1df2
Revert "Handle extension frame in session_inbound_frame_reset"
...
This reverts commit dbffb8995b
.
2016-02-25 00:58:24 +09:00
Tatsuhiro Tsujikawa
dbffb8995b
Handle extension frame in session_inbound_frame_reset
2016-02-25 00:45:24 +09:00
Tatsuhiro Tsujikawa
ebfae904ab
Fix typo
2016-02-25 00:32:17 +09:00
Tatsuhiro Tsujikawa
827abb57e9
Simplified bitfield calculation of extension frame
2016-02-24 23:59:01 +09:00
Tatsuhiro Tsujikawa
9aee43f7d8
Update doc for extension frames
2016-02-24 23:51:00 +09:00
Tatsuhiro Tsujikawa
34bf153653
Merge branch 'master' into simple-extensions
2016-02-24 23:21:03 +09:00
Tatsuhiro Tsujikawa
2782ef67de
nghttpd: Remove unused function
2016-02-23 01:18:52 +09:00
Tatsuhiro Tsujikawa
9d15f9b00d
nghttpd: Start SETTINGS timer after it is written to output buffer
2016-02-23 01:18:07 +09:00
Tatsuhiro Tsujikawa
3e72711e23
Cap 100 limit for remembering idle streams
2016-02-23 01:09:45 +09:00
Tatsuhiro Tsujikawa
f4bb8776d0
mruby: Clean up mrbgems as well
2016-02-23 01:06:23 +09:00
Tatsuhiro Tsujikawa
95ffb4565f
Update nghttpx documentation
2016-02-21 18:20:53 +09:00
Tatsuhiro Tsujikawa
f3a415f623
Update nghttpx documentation
2016-02-21 17:47:27 +09:00
Tatsuhiro Tsujikawa
936d4aca1a
Update h2load documentation
2016-02-21 17:46:48 +09:00