Skip to main content

rama_proxy/proxydb/
context.rs

1use rama_net::transport::TransportProtocol;
2
3/// The context as relevant to the proxy layer.
4#[derive(Debug, Clone)]
5pub struct ProxyContext {
6    /// The transport protocol used by the proxy.
7    pub protocol: TransportProtocol,
8}