aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/suricata/src/app-layer-ssl.h
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/suricata/src/app-layer-ssl.h')
-rw-r--r--framework/src/suricata/src/app-layer-ssl.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/framework/src/suricata/src/app-layer-ssl.h b/framework/src/suricata/src/app-layer-ssl.h
index 2fc1a969..e6274249 100644
--- a/framework/src/suricata/src/app-layer-ssl.h
+++ b/framework/src/suricata/src/app-layer-ssl.h
@@ -86,7 +86,8 @@ enum {
/* config flags */
#define SSL_TLS_LOG_PEM (1 << 0)
-
+/* extensions */
+#define SSL_EXTENSION_SNI 0x0000
/* SSL versions. We'll use a unified format for all, with the top byte
* holding the major version and the lower byte the minor version */
@@ -134,6 +135,9 @@ typedef struct SSLStateConnp_ {
char *cert0_issuerdn;
char *cert0_fingerprint;
+ /* ssl server name indication extension */
+ char *sni;
+
uint8_t *cert_input;
uint32_t cert_input_len;