Eloi Démolis
Eloi Démolis
Signed-off-by: Eloi DEMOLIS ## Motivation Following issue #2278 I implemented and tested the fix mentionned. ## Solution I changed the `valueset` macro used (among others) by the `span` macro which...
## Bug Report ### Version I experienced it on 0.1.35 and the latest 0.1.36, I didn't test older versions. ### Platform I'm on Linux 5.18.3-arch1-1. ### Description The proc macro...
We want to test Sōzu's lib to be sure that all corner cases are checked. This is intended for local development and inclusion in the CI.
When Sōzu reads the Host of an incoming request, it tries to find a suitable backend to redirect to. https://github.com/sozu-proxy/sozu/blob/cfde50b0f2294c655a1b9fa90648c2b7ed505f76/lib/src/http.rs#L1061-L1064 Suppose the session is already connected to a backend, meaning...
The accept client loop of the main process differs depending on whether the process is the original (it was launched with "start") or was upgraded. For the original main process,...
In https://github.com/rustls/rustls/pull/1640#issuecomment-1832220732 I mentioned: > `OpaqueMessage::encode` only appends the 5-byte "TLS header". Allocating and copying an entire payload (up to 16Kb) seems wasteful and could be completely avoided if the...
I've noticed that certain key features are currently missing in the wasmedge-quickjs repository, which may not be prioritized at the moment. Firstly, there is no HTTPS support, and I also...
`fetch` wasn't working in my scripts because the `Buffer` of the `Response` had no `byteLength`. I looked at the code and find out that the Rust `Buffer` struct exposes `js_length`...
Make all automatic answers configurable. The goal is to be able to provide an HTML-like file for each automatic answer generated by Sozu. The format allows some templating to generate...
This is the final stage of our proposition to support HTTP/2 in Sozu. Taking full advantage of kawa translating Mux is a state that handles one frontend connection and up...