summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_lib.c
diff options
context:
space:
mode:
authorbeck <>2019-11-17 00:10:47 +0000
committerbeck <>2019-11-17 00:10:47 +0000
commit6dc247f99372dd30c77652836201381b14efe0af (patch)
tree1006a2f2bd27da639a05e5d1c3e88bf65b9ba05e /src/lib/libssl/tls13_lib.c
parent13bcf61e228400d01e501e57d279641478062b64 (diff)
downloadopenbsd-6dc247f99372dd30c77652836201381b14efe0af.tar.gz
openbsd-6dc247f99372dd30c77652836201381b14efe0af.tar.bz2
openbsd-6dc247f99372dd30c77652836201381b14efe0af.zip
Separate the callbacks for recieved and completed post handshake messages
from the record layer ok jsing@
Diffstat (limited to 'src/lib/libssl/tls13_lib.c')
-rw-r--r--src/lib/libssl/tls13_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/tls13_lib.c b/src/lib/libssl/tls13_lib.c
index 81325cd86f..61ca3d4682 100644
--- a/src/lib/libssl/tls13_lib.c
+++ b/src/lib/libssl/tls13_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_lib.c,v 1.11 2019/03/17 15:13:23 jsing Exp $ */ 1/* $OpenBSD: tls13_lib.c,v 1.12 2019/11/17 00:10:47 beck Exp $ */
2/* 2/*
3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -101,7 +101,7 @@ tls13_ctx_new(int mode)
101 ctx->mode = mode; 101 ctx->mode = mode;
102 102
103 if ((ctx->rl = tls13_record_layer_new(tls13_legacy_wire_read_cb, 103 if ((ctx->rl = tls13_record_layer_new(tls13_legacy_wire_read_cb,
104 tls13_legacy_wire_write_cb, tls13_alert_received_cb, NULL, 104 tls13_legacy_wire_write_cb, tls13_alert_received_cb, NULL, NULL,
105 ctx)) == NULL) 105 ctx)) == NULL)
106 goto err; 106 goto err;
107 107