diff options
| author | jsing <> | 2020-03-10 17:15:02 +0000 |
|---|---|---|
| committer | jsing <> | 2020-03-10 17:15:02 +0000 |
| commit | 6937d400662450dccbd173b4c7d93e20fbe4e6be (patch) | |
| tree | bad7cb5716985b02413bdfde02ee013f17ab59a3 /src/lib/libssl/tls13_server.c | |
| parent | 76ffd547d39ae8e7e343710553d13ff568e7d3ef (diff) | |
| download | openbsd-6937d400662450dccbd173b4c7d93e20fbe4e6be.tar.gz openbsd-6937d400662450dccbd173b4c7d93e20fbe4e6be.tar.bz2 openbsd-6937d400662450dccbd173b4c7d93e20fbe4e6be.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 'src/lib/libssl/tls13_server.c')
| -rw-r--r-- | src/lib/libssl/tls13_server.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/lib/libssl/tls13_server.c b/src/lib/libssl/tls13_server.c index eb865bcfb1..edffd45239 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.26 2020/02/23 17:51:36 tb Exp $ */ | 1 | /* $OpenBSD: tls13_server.c,v 1.27 2020/03/10 17:15:02 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> |
| @@ -488,18 +488,6 @@ tls13_client_certificate_verify_recv(struct tls13_ctx *ctx, CBS *cbs) | |||
| 488 | return ret; | 488 | return ret; |
| 489 | } | 489 | } |
| 490 | 490 | ||
| 491 | int | ||
| 492 | tls13_client_key_update_send(struct tls13_ctx *ctx, CBB *cbb) | ||
| 493 | { | ||
| 494 | return 0; | ||
| 495 | } | ||
| 496 | |||
| 497 | int | ||
| 498 | tls13_client_key_update_recv(struct tls13_ctx *ctx, CBS *cbs) | ||
| 499 | { | ||
| 500 | return 0; | ||
| 501 | } | ||
| 502 | |||
| 503 | static int | 491 | static int |
| 504 | tls13_server_hello_build(struct tls13_ctx *ctx, CBB *cbb) | 492 | tls13_server_hello_build(struct tls13_ctx *ctx, CBB *cbb) |
| 505 | { | 493 | { |
