summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2022-07-24 14:19:46 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2022-07-24 14:19:46 +0000
commit877818d3b1cf9c00f6263151738de7bc39662820 (patch)
treebf28cb56872f2884576eb5cdda497228b36511d9 /lib
parent96f0011f507b2bb7c576f24d790ee45098ffeda7 (diff)
Move tls13_phh_done_cb() after tl13_phh_received_cb().
This is the order that they're called/run in.
Diffstat (limited to 'lib')
-rw-r--r--lib/libssl/tls13_lib.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/libssl/tls13_lib.c b/lib/libssl/tls13_lib.c
index 9d62479f150..d63951a0ff3 100644
--- a/lib/libssl/tls13_lib.c
+++ b/lib/libssl/tls13_lib.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls13_lib.c,v 1.68 2022/07/24 14:16:29 jsing Exp $ */
+/* $OpenBSD: tls13_lib.c,v 1.69 2022/07/24 14:19:45 jsing Exp $ */
/*
* Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
* Copyright (c) 2019 Bob Beck <beck@openbsd.org>
@@ -328,17 +328,6 @@ tls13_key_update_recv(struct tls13_ctx *ctx, CBS *cbs)
return tls13_send_alert(ctx->rl, alert);
}
-static void
-tls13_phh_done_cb(void *cb_arg)
-{
- struct tls13_ctx *ctx = cb_arg;
-
- if (ctx->key_update_request) {
- tls13_phh_update_write_traffic_secret(ctx);
- ctx->key_update_request = 0;
- }
-}
-
static ssize_t
tls13_phh_received_cb(void *cb_arg)
{
@@ -380,6 +369,17 @@ tls13_phh_received_cb(void *cb_arg)
return ret;
}
+static void
+tls13_phh_done_cb(void *cb_arg)
+{
+ struct tls13_ctx *ctx = cb_arg;
+
+ if (ctx->key_update_request) {
+ tls13_phh_update_write_traffic_secret(ctx);
+ ctx->key_update_request = 0;
+ }
+}
+
static const struct tls13_record_layer_callbacks rl_callbacks = {
.wire_read = tls13_legacy_wire_read_cb,
.wire_write = tls13_legacy_wire_write_cb,