Delete unused functions
Remove all the functions and dead code that is now no longer required as a result of the DTLS client move into the new state machine code. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
@@ -2158,13 +2158,7 @@ __owur unsigned int dtls1_link_min_mtu(void);
|
||||
void dtls1_hm_fragment_free(hm_fragment *frag);
|
||||
|
||||
/* some client-only functions */
|
||||
__owur int ssl3_client_hello(SSL *s);
|
||||
__owur int tls_construct_client_hello(SSL *s);
|
||||
__owur int ssl3_get_server_hello(SSL *s);
|
||||
__owur int ssl3_get_certificate_request(SSL *s);
|
||||
__owur int ssl3_get_new_session_ticket(SSL *s);
|
||||
__owur int ssl3_get_cert_status(SSL *s);
|
||||
__owur int ssl3_get_server_done(SSL *s);
|
||||
__owur enum MSG_PROCESS_RETURN tls_process_server_hello(SSL *s,
|
||||
unsigned long n);
|
||||
__owur enum MSG_PROCESS_RETURN tls_process_certificate_request(SSL *s,
|
||||
@@ -2173,33 +2167,24 @@ __owur enum MSG_PROCESS_RETURN tls_process_new_session_ticket(SSL *s,
|
||||
unsigned long n);
|
||||
__owur enum MSG_PROCESS_RETURN tls_process_cert_status(SSL *s, unsigned long n);
|
||||
__owur enum MSG_PROCESS_RETURN tls_process_server_done(SSL *s, unsigned long n);
|
||||
__owur int ssl3_send_client_verify(SSL *s);
|
||||
__owur int tls_construct_client_verify(SSL *s);
|
||||
__owur int tls_construct_client_verify(SSL *s);
|
||||
int ssl3_send_client_certificate(SSL *s);
|
||||
__owur enum WORK_STATE tls_prepare_client_certificate(SSL *s,
|
||||
enum WORK_STATE wst);
|
||||
__owur int tls_construct_client_certificate(SSL *s);
|
||||
__owur int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey);
|
||||
__owur int ssl3_send_client_key_exchange(SSL *s);
|
||||
__owur int tls_construct_client_key_exchange(SSL *s);
|
||||
__owur int tls_client_key_exchange_post_work(SSL *s);
|
||||
__owur int ssl3_get_key_exchange(SSL *s);
|
||||
__owur int ssl3_get_server_certificate(SSL *s);
|
||||
__owur enum MSG_PROCESS_RETURN tls_process_key_exchange(SSL *s,
|
||||
unsigned long n);
|
||||
__owur enum MSG_PROCESS_RETURN tls_process_server_certificate(SSL *s,
|
||||
unsigned long n);
|
||||
__owur int ssl3_check_cert_and_algorithm(SSL *s);
|
||||
# ifndef OPENSSL_NO_NEXTPROTONEG
|
||||
__owur int ssl3_send_next_proto(SSL *s);
|
||||
__owur int tls_construct_next_proto(SSL *s);
|
||||
# endif
|
||||
__owur enum MSG_PROCESS_RETURN dtls_process_hello_verify(SSL *s,
|
||||
unsigned long n);
|
||||
|
||||
int dtls1_client_hello(SSL *s);
|
||||
|
||||
/* some server-only functions */
|
||||
__owur int ssl3_get_client_hello(SSL *s);
|
||||
__owur int ssl3_send_server_hello(SSL *s);
|
||||
|
||||
Reference in New Issue
Block a user