diff options
author | jsing <> | 2015-02-11 07:01:10 +0000 |
---|---|---|
committer | jsing <> | 2015-02-11 07:01:10 +0000 |
commit | 53b67cf53ae755b09e315a3bd30e87b66c4ea769 (patch) | |
tree | c6f7f9e067233df00a99495d7e346482bb70b61e /src/lib/libtls/Makefile | |
parent | c6f3fe1fbc8da2fa6de30b10f1f219ab1f809438 (diff) | |
download | openbsd-53b67cf53ae755b09e315a3bd30e87b66c4ea769.tar.gz openbsd-53b67cf53ae755b09e315a3bd30e87b66c4ea769.tar.bz2 openbsd-53b67cf53ae755b09e315a3bd30e87b66c4ea769.zip |
Provide a tls_connect_servername() function that has the same behaviour
as tls_connect(), however allows the name to use for verification to be
explicitly provided, rather than being inferred from the host value.
Requested by reyk@
ok reyk@ tedu@
Diffstat (limited to 'src/lib/libtls/Makefile')
-rw-r--r-- | src/lib/libtls/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libtls/Makefile b/src/lib/libtls/Makefile index 4ae970d093..61368bccfd 100644 --- a/src/lib/libtls/Makefile +++ b/src/lib/libtls/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.4 2015/02/07 23:45:06 reyk Exp $ | 1 | # $OpenBSD: Makefile,v 1.5 2015/02/11 07:01:10 jsing Exp $ |
2 | 2 | ||
3 | CFLAGS+= -Wall -Werror -Wimplicit | 3 | CFLAGS+= -Wall -Werror -Wimplicit |
4 | CFLAGS+= -DLIBRESSL_INTERNAL | 4 | CFLAGS+= -DLIBRESSL_INTERNAL |
@@ -45,6 +45,8 @@ MLINKS+=tls_init.3 tls_reset.3 | |||
45 | MLINKS+=tls_init.3 tls_free.3 | 45 | MLINKS+=tls_init.3 tls_free.3 |
46 | MLINKS+=tls_init.3 tls_close.3 | 46 | MLINKS+=tls_init.3 tls_close.3 |
47 | MLINKS+=tls_init.3 tls_connect.3 | 47 | MLINKS+=tls_init.3 tls_connect.3 |
48 | MLINKS+=tls_init.3 tls_connect_fds.3 | ||
49 | MLINKS+=tls_init.3 tls_connect_servername.3 | ||
48 | MLINKS+=tls_init.3 tls_connect_socket.3 | 50 | MLINKS+=tls_init.3 tls_connect_socket.3 |
49 | MLINKS+=tls_init.3 tls_accept_socket.3 | 51 | MLINKS+=tls_init.3 tls_accept_socket.3 |
50 | MLINKS+=tls_init.3 tls_read.3 | 52 | MLINKS+=tls_init.3 tls_read.3 |