aboutsummaryrefslogtreecommitdiffstats
path: root/hostapd
diff options
context:
space:
mode:
authorJouni Malinen <jouni@qca.qualcomm.com>2015-12-04 14:04:31 +0200
committerVidyullatha Kanchanapally <vidyullatha@codeaurora.org>2016-01-11 07:56:55 +0530
commitaf862cc4eda76680be096c7b554a224171db3a06 (patch)
treecc14d3140bfb43e30cf8316600a1d4dc50a97d9c /hostapd
parentdfa6b0d2d24d2f86eaf193f0a9fc6b9a86629e67 (diff)
downloadandroid_external_wpa_supplicant_8-af862cc4eda76680be096c7b554a224171db3a06.tar.gz
android_external_wpa_supplicant_8-af862cc4eda76680be096c7b554a224171db3a06.tar.bz2
android_external_wpa_supplicant_8-af862cc4eda76680be096c7b554a224171db3a06.zip
BoringSSL: Move OCSP implementation into a separate file
This makes it easier to share the OCSP implementation needed for BoringSSL outside tls_openssl.c. For now, this is mainly for http_curl.c. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com> Git-commit: 213e158ca8d466c5bf1403eec83b9af56cf28dff Git-repo : git://w1.fi/srv/git/hostap.git Change-Id: Ifee0388a823c9f7312e168d33f1a0cd93ca14f4c CRs-fixed: 960177
Diffstat (limited to 'hostapd')
-rw-r--r--hostapd/Android.mk1
-rw-r--r--hostapd/Makefile1
2 files changed, 2 insertions, 0 deletions
diff --git a/hostapd/Android.mk b/hostapd/Android.mk
index 1d368a0c..06e45d90 100644
--- a/hostapd/Android.mk
+++ b/hostapd/Android.mk
@@ -545,6 +545,7 @@ endif
ifeq ($(CONFIG_TLS), openssl)
ifdef TLS_FUNCS
OBJS += src/crypto/tls_openssl.c
+OBJS += src/crypto/tls_openssl_ocsp.c
LIBS += -lssl
endif
OBJS += src/crypto/crypto_openssl.c
diff --git a/hostapd/Makefile b/hostapd/Makefile
index 086a6412..760aebd7 100644
--- a/hostapd/Makefile
+++ b/hostapd/Makefile
@@ -526,6 +526,7 @@ endif
ifeq ($(CONFIG_TLS), openssl)
ifdef TLS_FUNCS
OBJS += ../src/crypto/tls_openssl.o
+OBJS += ../src/crypto/tls_openssl_ocsp.o
LIBS += -lssl
endif
OBJS += ../src/crypto/crypto_openssl.o