diff options
author | 2020-03-10 17:15:02 +0000 | |
---|---|---|
committer | 2020-03-10 17:15:02 +0000 | |
commit | a097d0da207559973c36b30258594daaab125e1b (patch) | |
tree | 15c78c2d2f128330c4fad186d042d729f4f8ac4a /lib/libssl/tls13_server.c | |
parent | Add a return value check to tls13_buffer_extend(). (diff) | |
download | wireguard-openbsd-a097d0da207559973c36b30258594daaab125e1b.tar.xz wireguard-openbsd-a097d0da207559973c36b30258594daaab125e1b.zip |
Remove some unnecessary handshake enums/functions.
Both session tickets and key updates are post-handshake handshake messages,
which were originally included in the handshake code.
ok inoguchi@ tb@
Diffstat (limited to 'lib/libssl/tls13_server.c')
-rw-r--r-- | lib/libssl/tls13_server.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/lib/libssl/tls13_server.c b/lib/libssl/tls13_server.c index eb865bcfb1a..edffd452390 100644 --- a/lib/libssl/tls13_server.c +++ b/lib/libssl/tls13_server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_server.c,v 1.26 2020/02/23 17:51:36 tb Exp $ */ +/* $OpenBSD: tls13_server.c,v 1.27 2020/03/10 17:15:02 jsing Exp $ */ /* * Copyright (c) 2019, 2020 Joel Sing <jsing@openbsd.org> * Copyright (c) 2020 Bob Beck <beck@openbsd.org> @@ -488,18 +488,6 @@ tls13_client_certificate_verify_recv(struct tls13_ctx *ctx, CBS *cbs) return ret; } -int -tls13_client_key_update_send(struct tls13_ctx *ctx, CBB *cbb) -{ - return 0; -} - -int -tls13_client_key_update_recv(struct tls13_ctx *ctx, CBS *cbs) -{ - return 0; -} - static int tls13_server_hello_build(struct tls13_ctx *ctx, CBB *cbb) { |