summaryrefslogtreecommitdiff
path: root/src/lib/libtls/Makefile
diff options
context:
space:
mode:
authorbcook <>2016-09-04 12:26:43 +0000
committerbcook <>2016-09-04 12:26:43 +0000
commitad909e37b20a2c933e88e0e359b2fdb401d05092 (patch)
tree00adeae01265c1c035072ffd2eb37000b9640ece /src/lib/libtls/Makefile
parent50df0f10141bc06d1ff2d6bd98be2f5ab87857e6 (diff)
downloadopenbsd-ad909e37b20a2c933e88e0e359b2fdb401d05092.tar.gz
openbsd-ad909e37b20a2c933e88e0e359b2fdb401d05092.tar.bz2
openbsd-ad909e37b20a2c933e88e0e359b2fdb401d05092.zip
Add callback-based interface to libtls.
This allows working with buffers and callback functions instead of directly on sockets or file descriptors. Original patch from Tobias Pape <tobias_at_netshed.de>. ok beck@
Diffstat (limited to 'src/lib/libtls/Makefile')
-rw-r--r--src/lib/libtls/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libtls/Makefile b/src/lib/libtls/Makefile
index ca2f00bc8f..356c6f5b2e 100644
--- a/src/lib/libtls/Makefile
+++ b/src/lib/libtls/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.23 2016/03/30 06:38:43 jmc Exp $ 1# $OpenBSD: Makefile,v 1.24 2016/09/04 12:26:43 bcook Exp $
2 2
3CFLAGS+= -Wall -Werror -Wimplicit 3CFLAGS+= -Wall -Werror -Wimplicit
4CFLAGS+= -DLIBRESSL_INTERNAL 4CFLAGS+= -DLIBRESSL_INTERNAL
@@ -13,6 +13,7 @@ LDADD+= -L${BSDOBJDIR}/lib/libssl/ssl -lssl
13HDRS= tls.h 13HDRS= tls.h
14 14
15SRCS= tls.c \ 15SRCS= tls.c \
16 tls_bio_cb.c \
16 tls_client.c \ 17 tls_client.c \
17 tls_config.c \ 18 tls_config.c \
18 tls_conninfo.c \ 19 tls_conninfo.c \