summaryrefslogtreecommitdiff
path: root/src/lib/libssl/Makefile
diff options
context:
space:
mode:
authorjsing <>2020-01-20 13:10:37 +0000
committerjsing <>2020-01-20 13:10:37 +0000
commit6c57da956694b085fa306331ad12ba299e6715ff (patch)
treecfa7f8e8231dba5be24e1ea4325ed5f91b57cb43 /src/lib/libssl/Makefile
parent9c238ce75e032f6d1918b881939e60d5c86af4d1 (diff)
downloadopenbsd-6c57da956694b085fa306331ad12ba299e6715ff.tar.gz
openbsd-6c57da956694b085fa306331ad12ba299e6715ff.tar.bz2
openbsd-6c57da956694b085fa306331ad12ba299e6715ff.zip
Provide an error framework for use with the TLSv1.3 code.
This is based on the libtls error handling code, but adds machine readable codes and subcodes. We then map these codes back to libssl error codes. ok beck@ inoguchi@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r--src/lib/libssl/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile
index 778b525224..e3b9a5cac9 100644
--- a/src/lib/libssl/Makefile
+++ b/src/lib/libssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.57 2019/11/17 06:35:30 jsing Exp $ 1# $OpenBSD: Makefile,v 1.58 2020/01/20 13:10:37 jsing Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4.ifndef NOMAN 4.ifndef NOMAN
@@ -67,6 +67,7 @@ SRCS= \
67 t1_lib.c \ 67 t1_lib.c \
68 tls13_buffer.c \ 68 tls13_buffer.c \
69 tls13_client.c \ 69 tls13_client.c \
70 tls13_error.c \
70 tls13_handshake.c \ 71 tls13_handshake.c \
71 tls13_handshake_msg.c \ 72 tls13_handshake_msg.c \
72 tls13_key_schedule.c \ 73 tls13_key_schedule.c \