aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-11-21 22:52:13 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-11-21 22:52:13 +0000
commit1c78c43bd36179a161d619b5ee87448f442530c6 (patch)
treec61bfa5aeb6ef2a516a233bc9062f0469014f508 /ssl
parent21b52dd3eb01f7aa51326f775594c01899148196 (diff)
downloadopenssl-1c78c43bd36179a161d619b5ee87448f442530c6.zip
openssl-1c78c43bd36179a161d619b5ee87448f442530c6.tar.gz
openssl-1c78c43bd36179a161d619b5ee87448f442530c6.tar.bz2
move internal functions to ssl_locl.h
Diffstat (limited to 'ssl')
-rw-r--r--ssl/srtp.h5
-rw-r--r--ssl/ssl_locl.h6
2 files changed, 6 insertions, 5 deletions
diff --git a/ssl/srtp.h b/ssl/srtp.h
index e4ddf8c..c0cf33e 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 bda365d..eaeb43a 100644
--- a/ssl/ssl_locl.h
+++ b/ssl/ssl_locl.h
@@ -1114,4 +1114,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