Crates.io | sozu-lib |
lib.rs | sozu-lib |
version | 1.0.5 |
source | src |
created_at | 2017-04-04 16:17:58.976157 |
updated_at | 2024-10-14 08:31:52.189785 |
description | sozu library to build hot reconfigurable HTTP reverse proxies |
homepage | https://sozu.io |
repository | https://github.com/sozu-proxy/sozu |
max_upload_size | |
id | 9596 |
size | 849,245 |
sozu_lib
provides tools to write a proxy that can be reconfigured
without any downtime. See examples/http.rs
for a small example
of starting a HTTP proxy with one cluster.
A proxy starts as an event loop with which you communicate through
a Channel
. You can add or remove clusters by sending messages
through that channel. Each message has an identifier that the event
loop will use in its answer.
The proxy implementations handle differently the frontend and backend configurations. A single cluster could have multiple backend servers, but it can also answer to different hostnames and various TLS certificates. All those settings can be changed independently from the currently active connections. As an example, a backend server could be removed from the configuration while a client is still proxied through to that server. It should be possible later to force that connection to close if too many of those are lingering.
parser/
: only the HTTP 1.1 parser for nowlib/src/buffer_queue.rs
: data buffering implementationlib/src/protocol/
: the HTTP, HTTP2, TLS handshake and piping proxieslib/src/{http|https|tcp}.rs
: proxies for HTTP, HTTPS and TCPlib/src/server.rs
: the main event loop shared by all proxieslib/src/socket.rs
: abstraction over normal socketsSIMD stands for Single Instruction Multiple Data, and is used within the Kawa dependency to accelerate parsing.
Kawa implements SIMD with the SSE instruction set, which is specific to intel. If you wish to use Sōzu on another architecture (MacOS for instance), you can disable this feature by doing:
cargo build --no-default-features