summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_server.c
diff options
context:
space:
mode:
authorjsing <>2020-02-05 17:01:43 +0000
committerjsing <>2020-02-05 17:01:43 +0000
commit30522d799b56c01cbca3fedc09dfe8c5f5692a43 (patch)
tree4f7169e40092c950d0d4ff50d2211874dbf67734 /src/lib/libssl/tls13_server.c
parentdf4de2faa5919a5456f33026b035b781d8c926eb (diff)
downloadopenbsd-30522d799b56c01cbca3fedc09dfe8c5f5692a43.tar.gz
openbsd-30522d799b56c01cbca3fedc09dfe8c5f5692a43.tar.bz2
openbsd-30522d799b56c01cbca3fedc09dfe8c5f5692a43.zip
Remove the hello retry request processing code that was previously added.
This got added to the wrong functions (server side, not client) - swap the now unimplemented send/recv functions between client and server. ok tb@
Diffstat (limited to 'src/lib/libssl/tls13_server.c')
-rw-r--r--src/lib/libssl/tls13_server.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/lib/libssl/tls13_server.c b/src/lib/libssl/tls13_server.c
index 660508a121..0f708cb4ef 100644
--- a/src/lib/libssl/tls13_server.c
+++ b/src/lib/libssl/tls13_server.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_server.c,v 1.23 2020/02/04 18:00:30 jsing Exp $ */ 1/* $OpenBSD: tls13_server.c,v 1.24 2020/02/05 17:01:43 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2019, 2020 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2019, 2020 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2020 Bob Beck <beck@openbsd.org> 4 * Copyright (c) 2020 Bob Beck <beck@openbsd.org>
@@ -295,13 +295,7 @@ tls13_client_hello_recv(struct tls13_ctx *ctx, CBS *cbs)
295} 295}
296 296
297int 297int
298tls13_client_hello_retry_send(struct tls13_ctx *ctx, CBB *cbb) 298tls13_client_hello_retry_recv(struct tls13_ctx *ctx, CBS *cbs)
299{
300 return 0;
301}
302
303int
304tls13_server_hello_retry_recv(struct tls13_ctx *ctx, CBS *cbs)
305{ 299{
306 return 0; 300 return 0;
307} 301}