From bafb24a960a6ee7e695732579c995868f787e111 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@ --- lib/libssl/tls13_lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libssl/tls13_lib.c') diff --git a/lib/libssl/tls13_lib.c b/lib/libssl/tls13_lib.c index 81325cd86fe..61ca3d46821 100644 --- a/lib/libssl/tls13_lib.c +++ b/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-59-g8ed1b