diff options
author | 2019-11-17 00:10:47 +0000 | |
---|---|---|
committer | 2019-11-17 00:10:47 +0000 | |
commit | bafb24a960a6ee7e695732579c995868f787e111 (patch) | |
tree | 27a8838732b1cc0438e12fc985686f9658fcd1a6 /lib/libssl/tls13_lib.c | |
parent | tweak debug message (diff) | |
download | wireguard-openbsd-bafb24a960a6ee7e695732579c995868f787e111.tar.xz wireguard-openbsd-bafb24a960a6ee7e695732579c995868f787e111.zip |
Separate the callbacks for recieved and completed post handshake messages
from the record layer
ok jsing@
Diffstat (limited to 'lib/libssl/tls13_lib.c')
-rw-r--r-- | lib/libssl/tls13_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 <jsing@openbsd.org> * @@ -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; |