cyassl: add support for SSL_set_tlsext_host_name
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 45215
This commit is contained in:
parent
eeff1f0a12
commit
b233fdcfa2
2 changed files with 12 additions and 0 deletions
|
@ -40,6 +40,8 @@ TARGET_CFLAGS += $(FPIC)
|
|||
CONFIGURE_ARGS += \
|
||||
--without-zlib \
|
||||
--enable-singlethreaded \
|
||||
--enable-opensslextra \
|
||||
--enable-sni \
|
||||
--disable-examples
|
||||
|
||||
define Build/InstallDev
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
--- a/cyassl/openssl/ssl.h
|
||||
+++ b/cyassl/openssl/ssl.h
|
||||
@@ -372,6 +373,7 @@
|
||||
#define SSL_CTX_get_ex_new_index CyaSSL_CTX_get_ex_new_index
|
||||
|
||||
|
||||
+#define SSL_set_tlsext_host_name(x, y) CyaSSL_UseSNI(x, CYASSL_SNI_HOST_NAME, y, strlen(y))
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
Loading…
Reference in a new issue