move internal functions to ssl_locl.h
authorDr. Stephen Henson <steve@openssl.org>
Mon, 21 Nov 2011 22:52:13 +0000 (22:52 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Mon, 21 Nov 2011 22:52:13 +0000 (22:52 +0000)
ssl/srtp.h
ssl/ssl_locl.h

index e4ddf8c468e31dee4d62839ca7767957f1640cff..c0cf33ef288c7bce0814da8289e7438d1c96f58f 100644 (file)
@@ -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
index bda365d3237eaa1107789ed46afb2d9a90828fe3..eaeb43a7b51b549dd27e4f66fe809fc2431f9f26 100644 (file)
@@ -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