diff options
author | Jouni Malinen <j@w1.fi> | 2011-09-25 14:24:46 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2011-09-25 14:24:46 (GMT) |
commit | 5c47af9a7a0bdf9d37a99333816d8fc041aad9d3 (patch) | |
tree | 9653996506178f66aa635f8ea91a200ee081fa09 /hostapd/Makefile | |
parent | 3bff59f8571cd2ef63a18e0b4c43a0bbb5baf564 (diff) | |
download | hostap-5c47af9a7a0bdf9d37a99333816d8fc041aad9d3.zip hostap-5c47af9a7a0bdf9d37a99333816d8fc041aad9d3.tar.gz hostap-5c47af9a7a0bdf9d37a99333816d8fc041aad9d3.tar.bz2 |
TLS: Add support for TLS v1.1 (RFC 4346) with internal TLS
This is disabled by defautl and can be enabled with CONFIG_TLSV11=y
build configuration parameter.
Diffstat (limited to 'hostapd/Makefile')
-rw-r--r-- | hostapd/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hostapd/Makefile b/hostapd/Makefile index d2b85af..047961e 100644 --- a/hostapd/Makefile +++ b/hostapd/Makefile @@ -434,6 +434,10 @@ ifndef CONFIG_TLS CONFIG_TLS=openssl endif +ifdef CONFIG_TLSV11 +CFLAGS += -DCONFIG_TLSV11 +endif + ifeq ($(CONFIG_TLS), openssl) ifdef TLS_FUNCS OBJS += ../src/crypto/tls_openssl.o |