diff options
author | beck <> | 2015-09-12 21:00:38 +0000 |
---|---|---|
committer | beck <> | 2015-09-12 21:00:38 +0000 |
commit | 597a9dc18b943498a3f42065e756e1b0a648987c (patch) | |
tree | 926c057595ea50242eb49f4f725d0bf1a0488e65 /src/lib/libtls/Makefile | |
parent | 5295709b8306b98ea97e2540c0e4dad875421ebe (diff) | |
download | openbsd-597a9dc18b943498a3f42065e756e1b0a648987c.tar.gz openbsd-597a9dc18b943498a3f42065e756e1b0a648987c.tar.bz2 openbsd-597a9dc18b943498a3f42065e756e1b0a648987c.zip |
Move connection info into it's own private structure allocated and filled in
at handshake time. change accessors to return const char * to remove need
for caller to free memory.
ok jsing@
Diffstat (limited to 'src/lib/libtls/Makefile')
-rw-r--r-- | src/lib/libtls/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libtls/Makefile b/src/lib/libtls/Makefile index 1d7815f686..6e5914685c 100644 --- a/src/lib/libtls/Makefile +++ b/src/lib/libtls/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.18 2015/09/11 15:17:46 deraadt Exp $ | 1 | # $OpenBSD: Makefile,v 1.19 2015/09/12 21:00:38 beck Exp $ |
2 | 2 | ||
3 | CFLAGS+= -Wall -Werror -Wimplicit | 3 | CFLAGS+= -Wall -Werror -Wimplicit |
4 | CFLAGS+= -DLIBRESSL_INTERNAL | 4 | CFLAGS+= -DLIBRESSL_INTERNAL |
@@ -15,6 +15,7 @@ HDRS= tls.h | |||
15 | SRCS= tls.c \ | 15 | SRCS= tls.c \ |
16 | tls_client.c \ | 16 | tls_client.c \ |
17 | tls_config.c \ | 17 | tls_config.c \ |
18 | tls_conninfo.c \ | ||
18 | tls_peer.c \ | 19 | tls_peer.c \ |
19 | tls_server.c \ | 20 | tls_server.c \ |
20 | tls_util.c \ | 21 | tls_util.c \ |