wip builder stub

This commit is contained in:
Jun Kurihara 2024-05-28 03:36:05 +09:00
commit b168d1cdc5
No known key found for this signature in database
GPG key ID: 48ADFD173ED22B03
3 changed files with 33 additions and 1 deletions

View file

@ -12,4 +12,7 @@ pub enum RpxyCertError {
/// Error when parsing client CA certificates: No client certificate found
#[error("No client certificate found")]
NoClientCert,
/// Error for hot reload certificate reloader
#[error("Certificate reload error: {0}")]
CertificateReloadError(#[from] hot_reload::ReloaderError<crate::server_crypto::ServerCryptoBase>),
}