From 020a004bad98ab1793602e8ecc83fa2f92cae7c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moise=CC=81s=20Guimara=CC=83es?= Date: Mon, 13 Nov 2017 15:39:24 -0200 Subject: [PATCH] makes SNI.status available at client side --- wolfssl/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/internal.h b/wolfssl/internal.h index 4dc29fe2c..781282ed9 100644 --- a/wolfssl/internal.h +++ b/wolfssl/internal.h @@ -1899,8 +1899,8 @@ typedef struct SNI { byte type; /* SNI Type */ union { char* host_name; } data; /* SNI Data */ struct SNI* next; /* List Behavior */ -#ifndef NO_WOLFSSL_SERVER byte options; /* Behavior options */ +#ifndef NO_WOLFSSL_SERVER byte status; /* Matching result */ #endif } SNI;