Sean McArthur
25b2741d2f
v0.2.4
2020-03-30 15:23:38 -07:00
Sean McArthur
e41a1f130c
Respect SETTINGS_HEADER_TABLE_SIZE ( #459 )
2020-03-30 11:53:22 -07:00
Sean McArthur
7e1e923542
v0.2.3
2020-03-25 10:23:31 -07:00
Sean McArthur
d6dc63276f
Fix receiving a GOAWAY frame from updating the max recv ID
...
Receiving a GOAWAY should update the max *send* ID, it shouldn't affect
the max recv.
2020-03-25 10:08:13 -07:00
Kornel Lesiński
f7b3cf6d29
Handle :scheme and :path in CONNECT
...
If the :method is CONNECT the :scheme and :path pseudo-header fields MUST be omitted
2020-03-09 11:21:40 -07:00
Sean McArthur
f7718b5b19
v0.2.2
2020-03-03 12:27:26 -08:00
Sean McArthur
1b01300eeb
Use a u32 index for stream store ( #451 )
...
A connection can never have more than u32::MAX >> 1 streams, so we'll
never store more than that many in the store slab. Define the
`SlabIndex` as a `u32` to reduce the number of bytes moved around.
2020-02-28 15:30:48 -08:00
Sean McArthur
75a0caf220
fix warning about unnecessary parens
2020-02-17 16:51:03 -08:00
Sean McArthur
8ca2eb2597
Change unused BytesMut::split_to to advance
2020-01-29 15:55:28 -08:00
Sean McArthur
74d02933a5
Fix warnings about deprecated Error::description
2020-01-29 15:55:28 -08:00
Sean McArthur
012dfc6991
v0.2.1
2019-12-06 12:24:07 -08:00
Sean McArthur
ec751f3696
Remove Unpin requirement for the send Buf
2019-12-06 11:40:08 -08:00
Sean McArthur
13e0f17a03
v0.2.0
2019-12-03 12:06:13 -08:00
Sean McArthur
881832cde9
Rename unstable-stream feature to stream ( #433 )
2019-12-03 10:38:50 -08:00
Sean McArthur
eab9c0b410
Update to http 0.2 ( #432 )
2019-12-02 16:22:26 -08:00
Sean McArthur
4398e169e8
Update to Tokio 0.2 ( #428 )
2019-11-27 14:53:57 -08:00
Sean McArthur
86e53054a6
Change ReserveCapacity to expanded FlowControl type ( #423 )
...
- Adds `FlowControl::available_capacity` method.
- Adds `FlowControl::used_capacity` method.
2019-10-08 11:28:15 -07:00
Sean McArthur
3cfcab016e
Remove public Error constructor from io::Error ( #420 )
2019-10-07 15:29:38 -07:00
Sean McArthur
4c1d797712
Add ability to adjust INITIAL_WINDOW_SIZE setting on an existing connection ( #421 )
2019-10-07 15:29:23 -07:00
Sean McArthur
367206bfa1
Decode debug_data in GOAWAY frames
2019-10-04 12:45:22 -07:00
Sean McArthur
eef0ee52f0
v0.2.0-alpha.3
2019-10-01 08:37:56 -07:00
Sean McArthur
b534a7888a
v0.2.0-alpha.2
2019-09-20 14:05:06 -07:00
Michael Beaumont
fac165e451
Add server support for push ( #327 )
...
Closes #291 , closes #185
2019-09-16 11:30:58 -07:00
Sean McArthur
0527f5b72a
Rename 'stream' feature to 'unstable-stream'
2019-09-12 12:44:44 -07:00
Michael Beaumont
06a68a76a2
Use IndexMap::swap_remove instead of deprecated IndexMap::remove
2019-09-12 12:22:17 -07:00
Sean McArthur
8e81d84910
v0.2.0-alpha.1
2019-09-04 11:08:05 -07:00
Sean McArthur
2d90efee17
Prune futures-* dependencies
2019-08-30 14:53:49 -07:00
Sean McArthur
678c90eb0a
Update futures and tokio alphas
2019-08-29 15:44:26 -07:00
Gurwinder Singh
85b1f669c0
chore: async_await is stable on nightly
2019-08-21 11:10:03 -07:00
Sean McArthur
b2af3d4b28
Change trailers() to return Result<Option> instead of Option<Result>
2019-08-20 17:32:06 -07:00
Sean McArthur
a1db5428db
Make Stream impls part of optional 'stream' cargo feature ( #397 )
2019-08-20 16:01:03 -07:00
Sean McArthur
f31ec5d0da
Remove deprecated-in-0.1.x APIs
2019-08-20 15:15:04 -07:00
Gurwinder Singh
f46840f3fa
chore: cargo fmt, clippy
2019-08-16 22:27:39 -07:00
Gurwinder Singh
b039ef25bc
Make handshake an async fn; other cleanup
2019-08-16 18:47:47 -07:00
Gurwinder Singh
ad7ffa795f
Updated as per review comments
2019-08-16 18:47:47 -07:00
Gurwinder Singh
c8fefd49f1
Update lib to std-future
2019-08-16 18:47:47 -07:00
lukaslueg
782f1f712c
Remove byteorder-dependency ( #392 )
2019-08-09 13:20:48 -07:00
Gurwinder Singh
f4dec6efa4
chore: 2018 edition clean up ( #386 )
2019-07-25 10:30:52 -07:00
Jakub Beránek
db6b841e67
Update crate to Rust 2018 ( #383 )
2019-07-23 10:18:43 -07:00
Sean McArthur
4dde4157d5
v0.1.25 ( #382 )
2019-06-28 13:17:26 -07:00
Sean McArthur
ab52cf9b30
Send RST_STREAM of STREAM_CLOSED instead of GOAWAY if stream may have been forgotten
2019-06-28 12:48:42 -07:00
Sean McArthur
19936721b8
Adjust client::Handshake's PhantomData since it doesn't own a buffer
2019-06-27 09:41:43 -07:00
Sean McArthur
f8f05d04e7
Fix trailers without EOS flag to be a stream instead of connection error ( #377 )
...
[Trailers without EOS](https://httpwg.org/specs/rfc7540.html#HttpSequence ):
> An endpoint that receives a HEADERS frame without the END_STREAM flag set after receiving a final (non-informational) status code MUST treat the corresponding request or response as malformed (Section 8.1.2.6).
[Malformed messages](https://httpwg.org/specs/rfc7540.html#malformed ):
> Malformed requests or responses that are detected MUST be treated as a stream error (Section 5.4.2) of type PROTOCOL_ERROR.
2019-06-26 13:38:06 -07:00
Sean McArthur
c616ac4611
v0.1.24
2019-06-17 14:37:12 -07:00
Eliza Weisman
0e9fbe4a90
Log protocol error causes at debug ( #371 )
...
Currently, there are many cases where `h2` will fail a connection or
stream with a PROTOCOL_ERROR, without recording why the protocol error
occurred. Since protocol errors may result from a bug in `h2` or from a
misbehaving peer, it is important to be able to debug the cause of
protocol errors.
This branch adds a log line to almost all cases where a protocol error
occurs. I've tried to make the new log lines consistent with the
existing logging, and in some cases, changed existing log lines to make
them internally consistent with other log lines in that module. All
receive-side errors that would send a reset are now logged at the debug
level, using a formatting based on the format used in `framed_read`.
Signed-off-by: Eliza Weisman <eliza@buoyant.io >
2019-06-17 14:14:40 -07:00
Sean McArthur
383593a01e
allow servers to receive requests without an :authority header
2019-06-17 12:58:50 -07:00
Alex Touchet
e13645c091
Update repo URLs ( #370 )
2019-06-04 23:06:13 -07:00
Sean McArthur
8974fcd9ff
v0.1.23
2019-06-04 19:53:01 -07:00
Sean McArthur
611e1ca010
Clear recv buffer when stream refs are dropped
2019-06-04 19:09:30 -07:00
Sean McArthur
a5a2ee7f7a
v0.1.22
2019-06-03 11:26:59 -07:00