summaryrefslogtreecommitdiff
path: root/src/lib/libssl/Makefile
diff options
context:
space:
mode:
authorjsing <>2021-10-23 13:12:14 +0000
committerjsing <>2021-10-23 13:12:14 +0000
commitd2039e7348559d4183f5d055e691e70e1dadf349 (patch)
treebfbb08766325a11dd03fa658249cdacb09f2c3c0 /src/lib/libssl/Makefile
parentc4a5b1f8676a44f32abf55d9aff5ae7d2c36a4be (diff)
downloadopenbsd-d2039e7348559d4183f5d055e691e70e1dadf349.tar.gz
openbsd-d2039e7348559d4183f5d055e691e70e1dadf349.tar.bz2
openbsd-d2039e7348559d4183f5d055e691e70e1dadf349.zip
Rename tls13_buffer to tls_buffer.
This code will soon be used in the DTLSv1.2 and TLSv1.2 stack. Also introduce tls_internal.h and move/rename the read/write/flush callbacks. ok beck@ tb@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r--src/lib/libssl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile
index d468308c7e..82e139911e 100644
--- a/src/lib/libssl/Makefile
+++ b/src/lib/libssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.71 2021/09/04 16:26:12 jsing Exp $ 1# $OpenBSD: Makefile,v 1.72 2021/10/23 13:12:14 jsing Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4.ifndef NOMAN 4.ifndef NOMAN
@@ -70,7 +70,6 @@ SRCS= \
70 tls12_key_schedule.c \ 70 tls12_key_schedule.c \
71 tls12_lib.c \ 71 tls12_lib.c \
72 tls12_record_layer.c \ 72 tls12_record_layer.c \
73 tls13_buffer.c \
74 tls13_client.c \ 73 tls13_client.c \
75 tls13_error.c \ 74 tls13_error.c \
76 tls13_handshake.c \ 75 tls13_handshake.c \
@@ -82,6 +81,7 @@ SRCS= \
82 tls13_record.c \ 81 tls13_record.c \
83 tls13_record_layer.c \ 82 tls13_record_layer.c \
84 tls13_server.c \ 83 tls13_server.c \
84 tls_buffer.c \
85 tls_content.c 85 tls_content.c
86 86
87HDRS= dtls1.h srtp.h ssl.h ssl2.h ssl23.h ssl3.h tls1.h 87HDRS= dtls1.h srtp.h ssl.h ssl2.h ssl23.h ssl3.h tls1.h