Stepan Koltsov

Results 120 issues of Stepan Koltsov
trafficstars

Do something about Hyper. There are at least three options: * make big patch to hyper, merge rust-http2 into hyper * make rust-http depend on hyper, and use Hyper for...

Currently rust-http does 2 syscalls per read.

Wait for shutdown (explicit or due to panic in impl).

Need to have an API to cancel calls by client. When call is cancelled, `RST_STREAM` is sent. Client needs an API to cancel calls, and server needs an API to...

Current `httpbis::Client` connects to only single server. Client creates a thread. So if you need to connect to multiple servers, you need to create multiple clients and create multiple threads....

Client should reconnect on TCP error or `GOAWAY` frame. - [x] reconnect on TCP error - [x] reconnect on internal error (i. e. panic in implementation) - [ ] handle...

Documentation says: ``` (?exp) : match exp, creating capture group named name \k : match the exact string that the capture group named name matched (?Pexp) : same as (?exp)...

Would be more helpful if undefined `PATH` variable resulted in a different error.

Insert a key-value pair into the map without checking if the key already exists in the map. This operation is safe if a key does not exist in the map....

waiting-for-std

When `IndexMap` is small, e. g. 5 elements, it is faster to: * not allocate `RawTable` * linear search elements

enhancement