Early data option
Some checks failed
Unit Test / test (push) Has been cancelled
ShiftLeft Scan / Scan-Build (push) Has been cancelled

This commit is contained in:
Pascal Engélibert 2026-01-08 11:05:06 +01:00
commit 9518cc8b73
4 changed files with 23 additions and 6 deletions

View file

@ -52,6 +52,8 @@ pub struct ProxyConfig {
/// timeout to handle a connection, total time of receive request, serve, and send response. this might limits the max length of response.
pub connection_handling_timeout: Option<Duration>,
pub enable_early_data: bool,
#[cfg(feature = "cache")]
pub cache_enabled: bool,
#[cfg(feature = "cache")]
@ -100,6 +102,8 @@ impl Default for ProxyConfig {
sni_consistency: true,
connection_handling_timeout: None,
enable_early_data: false,
#[cfg(feature = "cache")]
cache_enabled: false,
#[cfg(feature = "cache")]