Skip to content

Commit c325de9

Browse files
committed
removed WOLFSSL_SNI_HOST_NAME_OUTER && minor fix (missing sniHostName got lost during editing)
1 parent 6f567b5 commit c325de9

3 files changed

Lines changed: 1 addition & 2 deletions

File tree

wolfssl/ssl.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3811,7 +3811,6 @@ WOLFSSL_API void* wolfSSL_CTX_GetHeap(WOLFSSL_CTX* ctx, WOLFSSL* ssl);
38113811
/* SNI types */
38123812
enum {
38133813
WOLFSSL_SNI_HOST_NAME = 0,
3814-
WOLFSSL_SNI_HOST_NAME_OUTER = 0,
38153814
};
38163815

38173816
WOLFSSL_ABI WOLFSSL_API int wolfSSL_UseSNI(WOLFSSL* ssl, unsigned char type,

wrapper/CSharp/wolfSSL-TLS-Server/wolfSSL-TLS-Server.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ public static void Main(string[] args)
7373
IntPtr ctx;
7474
IntPtr ssl;
7575
Socket fd;
76+
IntPtr sniHostName;
7677

7778
/* These paths should be changed for use */
7879
string fileCert = @"server-cert.pem";

wrapper/CSharp/wolfSSL_CSharp/wolfSSL.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,6 @@ public void free()
460460
public static readonly int SUCCESS = 1;
461461
public static readonly int FAILURE = 0;
462462
public static readonly int WOLFSSL_SNI_HOST_NAME = 0;
463-
public static readonly int WOLFSSL_SNI_HOST_NAME_OUTER = 0;
464463

465464

466465
private static IntPtr unwrap_ctx(IntPtr ctx)

0 commit comments

Comments
 (0)