boring(ssl): add ZSTD to `CertificateCompressionAlgorithm` (#71)
This commit is contained in:
parent
9da3b7b44c
commit
7205960bc1
|
|
@ -864,6 +864,8 @@ impl CertificateCompressionAlgorithm {
|
||||||
pub const ZLIB: Self = Self(ffi::TLSEXT_cert_compression_zlib as u16);
|
pub const ZLIB: Self = Self(ffi::TLSEXT_cert_compression_zlib as u16);
|
||||||
|
|
||||||
pub const BROTLI: Self = Self(ffi::TLSEXT_cert_compression_brotli as u16);
|
pub const BROTLI: Self = Self(ffi::TLSEXT_cert_compression_brotli as u16);
|
||||||
|
|
||||||
|
pub const ZSTD: Self = Self(ffi::TLSEXT_cert_compression_zstd as u16);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A standard implementation of protocol selection for Application Layer Protocol Negotiation
|
/// A standard implementation of protocol selection for Application Layer Protocol Negotiation
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue