summaryrefslogtreecommitdiffstats
path: root/src/shrpx_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shrpx_config.h')
-rw-r--r--src/shrpx_config.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/shrpx_config.h b/src/shrpx_config.h
index 7f316eb..335b0f9 100644
--- a/src/shrpx_config.h
+++ b/src/shrpx_config.h
@@ -636,6 +636,11 @@ struct TLSCertificate {
#ifdef ENABLE_HTTP3
struct QUICKeyingMaterial {
+ QUICKeyingMaterial() noexcept = default;
+ QUICKeyingMaterial(QUICKeyingMaterial &&other) noexcept;
+ ~QUICKeyingMaterial() noexcept;
+ QUICKeyingMaterial &operator=(QUICKeyingMaterial &&other) noexcept;
+ EVP_CIPHER_CTX *cid_encryption_ctx;
std::array<uint8_t, SHRPX_QUIC_SECRET_RESERVEDLEN> reserved;
std::array<uint8_t, SHRPX_QUIC_SECRETLEN> secret;
std::array<uint8_t, SHRPX_QUIC_SALTLEN> salt;