Lines Matching full:fix
7 * Fix flow control limits to not apply until receiving SETTINGS ack.
8 * Fix not returning an error if IO ended without `close_notify`.
14 * Fix selecting MAX_CONCURRENT_STREAMS value if no value is advertised initially.
18 * Fix assigning connection capacity which could starve streams in some instances.
33 * Fix opening of new streams over peer's max concurrent limit.
34 * Fix `RecvStream` to return data even if it has received a `CANCEL` stream error.
39 * Fix panic if a server received a request with a `:status` pseudo header in the 1xx range.
40 * Fix panic if a reset stream had pending push promises that were more than allowed.
41 * Fix potential flow control overflow by subtraction, instead returning a connection error.
45 * Fix counting reset streams when triggered by a GOAWAY.
50 * Fix panic because of opposite check in `is_remote_local()`.
57 * Fix theoretical memory growth when receiving too many HEADERS and then
65 * Fix releasing of frames when stream is finished, reducing memory usage.
66 * Fix panic when trying to send data and connection window is available, but stream window is not.
67 * Fix spurious wakeups when stream capacity is not available.
88 * Fix header decoding error when a header name is contained at a continuation
95 * Fix panic when receiving already reset push promise (#597)
100 * Fix panic if receiving malformed PUSH_PROMISE with stream ID of 0.
104 * Fix hang related to new `max_send_buffer_size`.
110 * Fix panic if receiving malformed HEADERS with stream ID of 0.
114 * Fix panic if server sends a malformed frame on a stream client was about to open.
115 * Fix server to treat `:status` in a request as a stream error instead of connection error.
119 * Fix regression of `h2::Error` that were created via `From<h2::Reason>` not returning their reason…
123 * Fix sending of very large headers. Previously when a single header was too big to fit in a single…
124 * Fix buffered data field to be a bigger integer size.
129 * Fix panic when encoding header size update over a certain size.
130 * Fix `SendRequest` to wake up connection when dropped.
131 * Fix potential hang if `RecvStream` is placed in the request or response `extensions`.
136 * Fix client being able to make `CONNECT` requests without a `:path`.
138 * Fix some docs.
142 * Fix incorrect handling of received 1xx responses on the client when the request body is still str…
148 * Fix client to ignore receipt of 1xx headers frames.
149 * Fix incorrect calculation of pseudo header lengths when determining if a received header is too b…
159 * Fix stream ref count when sending a push promise
160 * Fix receiving empty DATA frames in response to a HEAD request
161 * Fix handling of client disabling SERVER_PUSH
169 * Fix rare debug assert failure in store shutdown.
173 * Fix when receiving `SETTINGS_HEADER_TABLE_SIZE` setting.
177 * Fix server being able to accept `CONNECT` requests without `:scheme` or `:path`.
178 * Fix receiving a GOAWAY frame from updating the recv max ID, it should only update max send ID.
216 * Fix to send a `RST_STREAM` instead of `GOAWAY` if receiving a frame on a previously closed stream.
217 * Fix receiving trailers without an end-stream flag to be a stream error instead of connection erro…
221 * Fix server wrongly rejecting requests that don't have an `:authority` header (#372).
225 * Fix leaking of received DATA frames if the `RecvStream` is never polled (#368).
229 * Fix rare panic when remote sends `RST_STREAM` or `GOAWAY` for a stream pending window capacity (#…
233 * Fix write loop when a header didn't fit in write buffer.
237 * Fix lifetime conflict for older compilers.
241 * Fix rare crash if `CONTINUATION` frame resumed in the middle of headers with the same name.
242 * Fix HPACK encoder using an old evicted index for repeated header names.
246 * Fix `server::Connection::abrupt_shutdown` to no longer return the same error the user sent (#352).
251 * Fix notifying a `RecvStream` task if locally sending a reset.
252 * Fix connections "hanging" when all handles are dropped but some streams had been reset.
260 * Fix race condition bug related to shutting down the client (#338).
264 * Fix closed streams to always return window capacity to the connection (#334).
265 * Fix locking when `Debug` printing an `OpaqueStreamRef` (#333).
266 * Fix inverted split for DATA frame padding (#330).
277 * Fix initial send window size (#301).
278 * Fix panic when calling `reserve_capacity` after connection has been closed (#302).
279 * Fix handling of incoming `SETTINGS_INITIAL_WINDOW_SIZE`. (#299)
284 * Fix potential panic when dropping clients (#295).
285 * Fix busy loop when shutting down server (#296).
289 * Fix potential panic in `SendRequest::poll_ready()` (#281).
290 * Fix infinite loop on reset connection during prefix (#285).
298 * Fix client bug when max streams is reached. (#277)
310 * Fix the `last_stream_id` sent during graceful GOAWAY (#254).
322 * Fix HPACK decoding bug with regards to large literals (#244).
323 * Fix state transition bug triggered by receiving a RST_STREAM frame (#247).
327 * Fix another bug relating to resetting connections and reaching
334 * Fix bug relating to resetting connections and reaching max concurrency (#235).