mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-03 20:54:41 +02:00
Merge pull request #9008 from gojimmypi/pr-wolfssl_user_io
Improve WOLFSSL_USER_IO defaults
This commit is contained in:
@@ -6806,7 +6806,8 @@ WOLFSSL_LOCAL word32 MacSize(const WOLFSSL* ssl);
|
||||
WOLFSSL_LOCAL int DoClientHelloStateless(WOLFSSL* ssl,
|
||||
const byte* input, word32 helloSz, byte isFirstCHFrag, byte* tls13);
|
||||
#endif /* !defined(NO_WOLFSSL_SERVER) */
|
||||
#if !defined(WOLFCRYPT_ONLY) && defined(USE_WOLFSSL_IO)
|
||||
#if !defined(WOLFCRYPT_ONLY) && \
|
||||
(defined(USE_WOLFSSL_IO) || defined(WOLFSSL_USER_IO))
|
||||
WOLFSSL_LOCAL int sockAddrEqual(SOCKADDR_S *a, XSOCKLENT aLen,
|
||||
SOCKADDR_S *b, XSOCKLENT bLen);
|
||||
#endif
|
||||
|
@@ -50,9 +50,8 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(USE_WOLFSSL_IO) || defined(HAVE_HTTP_CLIENT)
|
||||
|
||||
#if defined(USE_WOLFSSL_IO) || defined(WOLFSSL_USER_IO) || \
|
||||
defined(HAVE_HTTP_CLIENT)
|
||||
#ifdef HAVE_LIBZ
|
||||
#include "zlib.h"
|
||||
#endif
|
||||
@@ -82,6 +81,8 @@
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
#elif defined(USE_WINDOWS_API)
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
#else
|
||||
#if defined(WOLFSSL_LWIP) && !defined(WOLFSSL_APACHE_MYNEWT)
|
||||
/* lwIP needs to be configured to use sockets API in this mode */
|
||||
@@ -219,7 +220,6 @@
|
||||
#if defined(WOLFSSL_EMBOS)
|
||||
#include <errno.h>
|
||||
#endif
|
||||
|
||||
#endif /* USE_WINDOWS_API */
|
||||
|
||||
#ifdef __sun
|
||||
|
Reference in New Issue
Block a user