1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

Rename ssl3_client_hello() to ssl3_send_client_hello() for consistency.

This commit is contained in:
jsing 2017-10-12 16:06:32 +00:00
parent b04c66583e
commit e39acaa983
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssl_clnt.c,v 1.21 2017/10/11 17:35:00 jsing Exp $ */
/* $OpenBSD: ssl_clnt.c,v 1.22 2017/10/12 16:06:32 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@ -277,7 +277,7 @@ ssl3_connect(SSL *s)
dtls1_start_timer(s);
}
ret = ssl3_client_hello(s);
ret = ssl3_send_client_hello(s);
if (ret <= 0)
goto end;
@ -661,7 +661,7 @@ end:
}
int
ssl3_client_hello(SSL *s)
ssl3_send_client_hello(SSL *s)
{
CBB cbb, client_hello, session_id, cookie, cipher_suites;
CBB compression_methods;

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssl_locl.h,v 1.200 2017/10/12 15:52:50 jsing Exp $ */
/* $OpenBSD: ssl_locl.h,v 1.201 2017/10/12 16:06:32 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@ -1193,7 +1193,7 @@ unsigned int dtls1_min_mtu(void);
/* some client-only functions */
int dtls1_get_hello_verify(SSL *s);
int ssl3_client_hello(SSL *s);
int ssl3_send_client_hello(SSL *s);
int ssl3_get_server_hello(SSL *s);
int ssl3_get_certificate_request(SSL *s);
int ssl3_get_new_session_ticket(SSL *s);