aboutsummaryrefslogtreecommitdiff
path: root/example/reader_util.h
diff options
context:
space:
mode:
authorToni <matzeton@googlemail.com>2022-07-29 19:29:54 +0200
committerGitHub <noreply@github.com>2022-07-29 19:29:54 +0200
commited4f106a0d6ba2d644e95354891b4b68f927c535 (patch)
tree9dcd51e78edaa9eb1d41149242ba37fe2eb9811d /example/reader_util.h
parent405a52ed65c0b641b26f0571bf6a6c369c5251d7 (diff)
Add Softether dissector. (#1679)
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'example/reader_util.h')
-rw-r--r--example/reader_util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/example/reader_util.h b/example/reader_util.h
index e73df42b2..e61167837 100644
--- a/example/reader_util.h
+++ b/example/reader_util.h
@@ -162,6 +162,7 @@ enum info_type {
INFO_INVALID = 0,
INFO_GENERIC,
INFO_KERBEROS,
+ INFO_SOFTETHER,
INFO_FTP_IMAP_POP_SMTP,
INFO_TLS_QUIC_ALPN_VERSION,
INFO_TLS_QUIC_ALPN_ONLY,
@@ -227,6 +228,12 @@ typedef struct ndpi_flow_info {
char hostname[85];
char username[86];
} kerberos;
+ struct {
+ char ip[16];
+ char port[6];
+ char hostname[48];
+ char fqdn[48];
+ } softether;
};
char flow_extra_info[16];