Skip to content

Commit 5b926f1

Browse files
committed
Adding WOLFSSL_USER_SETTINGS guarding
1 parent 70909ea commit 5b926f1

4 files changed

Lines changed: 12 additions & 0 deletions

File tree

tls/client-tls-posthsauth.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
#include <unistd.h>
3232

3333
/* wolfSSL */
34+
#ifndef WOLFSSL_USER_SETTINGS
35+
#include <wolfssl/options.h>
36+
#endif
3437
#include <wolfssl/options.h>
3538
#include <wolfssl/ssl.h>
3639
#include <wolfssl/wolfio.h>

tls/client-tls13.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
#include <unistd.h>
3232

3333
/* wolfSSL */
34+
#ifndef WOLFSSL_USER_SETTINGS
35+
#include <wolfssl/options.h>
36+
#endif
3437
#include <wolfssl/options.h>
3538
#include <wolfssl/ssl.h>
3639
#include <wolfssl/wolfio.h>

tls/server-tls-posthsauth.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
#endif
3737

3838
/* wolfSSL */
39+
#ifndef WOLFSSL_USER_SETTINGS
40+
#include <wolfssl/options.h>
41+
#endif
3942
#include <wolfssl/options.h>
4043
#include <wolfssl/ssl.h>
4144
#include <wolfssl/wolfio.h>

tls/server-tls13.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
#endif
3737

3838
/* wolfSSL */
39+
#ifndef WOLFSSL_USER_SETTINGS
40+
#include <wolfssl/options.h>
41+
#endif
3942
#include <wolfssl/options.h>
4043
#include <wolfssl/ssl.h>
4144
#include <wolfssl/wolfio.h>

0 commit comments

Comments
 (0)