diff options
Diffstat (limited to 'ssl/quic/quic_local.h')
-rw-r--r-- | ssl/quic/quic_local.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ssl/quic/quic_local.h b/ssl/quic/quic_local.h index ffb617184f..3b738e541b 100644 --- a/ssl/quic/quic_local.h +++ b/ssl/quic/quic_local.h @@ -33,7 +33,7 @@ const SSL_METHOD *func_name(void) \ ossl_quic_write, \ ossl_quic_shutdown, \ NULL /* renegotiate */, \ - NULL /* renegotiate_check */, \ + ossl_quic_renegotiate_check, \ NULL /* read_bytes */, \ NULL /* write_bytes */, \ NULL /* dispatch_alert */, \ @@ -42,9 +42,9 @@ const SSL_METHOD *func_name(void) \ NULL /* get_cipher_by_char */, \ NULL /* put_cipher_by_char */, \ ossl_quic_pending, \ - NULL /* num_ciphers */, \ - NULL /* get_cipher */, \ - NULL /* default_timeout */, \ + ossl_quic_num_ciphers, \ + ossl_quic_get_cipher, \ + ossl_quic_default_timeout, \ &enc_data, \ ssl_undefined_void_function, \ ossl_quic_callback_ctrl, \ @@ -67,5 +67,9 @@ __owur long ossl_quic_ctx_ctrl(SSL_CTX *s, int cmd, long larg, void *parg); __owur long ossl_quic_callback_ctrl(SSL *s, int cmd, void (*fp) (void)); __owur long ossl_quic_ctx_callback_ctrl(SSL_CTX *s, int cmd, void (*fp) (void)); __owur size_t ossl_quic_pending(const SSL *s); +__owur long ossl_quic_default_timeout(void); +__owur int ossl_quic_num_ciphers(void); +__owur const SSL_CIPHER *ossl_quic_get_cipher(unsigned int u); +int ossl_quic_renegotiate_check(SSL *ssl, int initok); #endif |