From 6dc247f99372dd30c77652836201381b14efe0af Mon Sep 17 00:00:00 2001 From: beck <> Date: Sun, 17 Nov 2019 00:10:47 +0000 Subject: Separate the callbacks for recieved and completed post handshake messages from the record layer ok jsing@ --- src/lib/libssl/tls13_lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libssl/tls13_lib.c') 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 @@ -/* $OpenBSD: tls13_lib.c,v 1.11 2019/03/17 15:13:23 jsing Exp $ */ +/* $OpenBSD: tls13_lib.c,v 1.12 2019/11/17 00:10:47 beck Exp $ */ /* * Copyright (c) 2018, 2019 Joel Sing * @@ -101,7 +101,7 @@ tls13_ctx_new(int mode) ctx->mode = mode; if ((ctx->rl = tls13_record_layer_new(tls13_legacy_wire_read_cb, - tls13_legacy_wire_write_cb, tls13_alert_received_cb, NULL, + tls13_legacy_wire_write_cb, tls13_alert_received_cb, NULL, NULL, ctx)) == NULL) goto err; -- cgit v1.2.3-55-g6feb