From: Dr. Stephen Henson Date: Mon, 9 Nov 2009 18:58:50 +0000 (+0000) Subject: oops, add missing prototypes X-Git-Tag: OpenSSL_1_0_0-beta4~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ec4346f6f9e3507061dd943c86e7fb5fbb26bcbf;p=oweals%2Fopenssl.git oops, add missing prototypes --- diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index 74fc972908..8f37008c1d 100644 --- a/ssl/ssl_locl.h +++ b/ssl/ssl_locl.h @@ -1063,4 +1063,12 @@ int tls1_process_ticket(SSL *s, unsigned char *session_id, int len, #endif EVP_MD_CTX* ssl_replace_hash(EVP_MD_CTX **hash,const EVP_MD *md) ; void ssl_clear_hash_ctx(EVP_MD_CTX **hash); +int ssl_add_serverhello_renegotiate_ext(SSL *s, unsigned char *p, int *len, + int maxlen); +int ssl_parse_serverhello_renegotiate_ext(SSL *s, unsigned char *d, int len, + int *al); +int ssl_add_clienthello_renegotiate_ext(SSL *s, unsigned char *p, int *len, + int maxlen); +int ssl_parse_clienthello_renegotiate_ext(SSL *s, unsigned char *d, int len, + int *al); #endif