summaryrefslogtreecommitdiff
path: root/lib/libssl
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2017-10-12 16:06:33 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2017-10-12 16:06:33 +0000
commit33a93ebef92954d327444e2aaa33be3041f0f5a4 (patch)
treedf5cbbab590fbb7c1d90dd8942cf0b0b0c65d158 /lib/libssl
parenta237183be8f3b436eac1f0e037c1d10b31909a28 (diff)
Rename ssl3_client_hello() to ssl3_send_client_hello() for consistency.
Diffstat (limited to 'lib/libssl')
-rw-r--r--lib/libssl/ssl_clnt.c6
-rw-r--r--lib/libssl/ssl_locl.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/libssl/ssl_clnt.c b/lib/libssl/ssl_clnt.c
index 33352705d18..56ea99d82e5 100644
--- a/lib/libssl/ssl_clnt.c
+++ b/lib/libssl/ssl_clnt.c
@@ -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;
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h
index 044822c32c8..f6e922e99cb 100644
--- a/lib/libssl/ssl_locl.h
+++ b/lib/libssl/ssl_locl.h
@@ -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);