From: Dr. Stephen Henson Date: Mon, 21 Nov 2011 22:52:01 +0000 (+0000) Subject: move internal functions to ssl_locl.h X-Git-Tag: OpenSSL_1_0_1-beta1~62 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d7125d8d856ce35fdd4d27d6094107190ded8c8b;p=oweals%2Fopenssl.git move internal functions to ssl_locl.h --- diff --git a/ssl/srtp.h b/ssl/srtp.h index e4ddf8c468..c0cf33ef28 100644 --- a/ssl/srtp.h +++ b/ssl/srtp.h @@ -137,11 +137,6 @@ SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s); STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl); SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s); -int ssl_add_clienthello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen); -int ssl_parse_clienthello_use_srtp_ext(SSL *s, unsigned char *d, int len,int *al); -int ssl_add_serverhello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen); -int ssl_parse_serverhello_use_srtp_ext(SSL *s, unsigned char *d, int len,int *al); - #ifdef __cplusplus } #endif diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index 48ee110d5f..7666e5e984 100644 --- a/ssl/ssl_locl.h +++ b/ssl/ssl_locl.h @@ -1116,4 +1116,10 @@ int ssl_parse_clienthello_renegotiate_ext(SSL *s, unsigned char *d, int len, long ssl_get_algorithm2(SSL *s); int tls1_process_sigalgs(SSL *s, const unsigned char *data, int dsize); int tls12_get_req_sig_algs(SSL *s, unsigned char *p); + +int ssl_add_clienthello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen); +int ssl_parse_clienthello_use_srtp_ext(SSL *s, unsigned char *d, int len,int *al); +int ssl_add_serverhello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen); +int ssl_parse_serverhello_use_srtp_ext(SSL *s, unsigned char *d, int len,int *al); + #endif