summaryrefslogtreecommitdiff
path: root/src/lib/libssl/Makefile
diff options
context:
space:
mode:
authorjsing <>2019-11-17 06:35:30 +0000
committerjsing <>2019-11-17 06:35:30 +0000
commit409fa0d28febaa4ac29449f82e464e5bdb785ac6 (patch)
tree64b268783159e5f32378776acd8d4e6c753a419b /src/lib/libssl/Makefile
parent45bbbfd098329712115368b9fab20a0605ef4bde (diff)
downloadopenbsd-409fa0d28febaa4ac29449f82e464e5bdb785ac6.tar.gz
openbsd-409fa0d28febaa4ac29449f82e464e5bdb785ac6.tar.bz2
openbsd-409fa0d28febaa4ac29449f82e464e5bdb785ac6.zip
Add the initial framework for the TLSv1.3 server.
ok beck@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r--src/lib/libssl/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile
index 2ede8a77b0..778b525224 100644
--- a/src/lib/libssl/Makefile
+++ b/src/lib/libssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.56 2019/02/09 15:30:52 jsing Exp $ 1# $OpenBSD: Makefile,v 1.57 2019/11/17 06:35:30 jsing Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4.ifndef NOMAN 4.ifndef NOMAN
@@ -72,7 +72,8 @@ SRCS= \
72 tls13_key_schedule.c \ 72 tls13_key_schedule.c \
73 tls13_lib.c \ 73 tls13_lib.c \
74 tls13_record.c \ 74 tls13_record.c \
75 tls13_record_layer.c 75 tls13_record_layer.c \
76 tls13_server.c
76 77
77HDRS= dtls1.h srtp.h ssl.h ssl2.h ssl23.h ssl3.h tls1.h 78HDRS= dtls1.h srtp.h ssl.h ssl2.h ssl23.h ssl3.h tls1.h
78 79