diff options
| author | jsing <> | 2020-02-05 17:01:43 +0000 |
|---|---|---|
| committer | jsing <> | 2020-02-05 17:01:43 +0000 |
| commit | 07ea61878ac6d6bcacd99b33edf34046f1fd076b (patch) | |
| tree | 4f7169e40092c950d0d4ff50d2211874dbf67734 /src/lib/libssl/tls13_server.c | |
| parent | 35ac06cb649d21eaa5d022681827e3178eea7f72 (diff) | |
| download | openbsd-07ea61878ac6d6bcacd99b33edf34046f1fd076b.tar.gz openbsd-07ea61878ac6d6bcacd99b33edf34046f1fd076b.tar.bz2 openbsd-07ea61878ac6d6bcacd99b33edf34046f1fd076b.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.c | 10 |
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 | ||
| 297 | int | 297 | int |
| 298 | tls13_client_hello_retry_send(struct tls13_ctx *ctx, CBB *cbb) | 298 | tls13_client_hello_retry_recv(struct tls13_ctx *ctx, CBS *cbs) |
| 299 | { | ||
| 300 | return 0; | ||
| 301 | } | ||
| 302 | |||
| 303 | int | ||
| 304 | tls13_server_hello_retry_recv(struct tls13_ctx *ctx, CBS *cbs) | ||
| 305 | { | 299 | { |
| 306 | return 0; | 300 | return 0; |
| 307 | } | 301 | } |
