summaryrefslogtreecommitdiffstats
path: root/src/dnscap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dnscap.h')
-rw-r--r--src/dnscap.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/dnscap.h b/src/dnscap.h
index ebdde87..e079ec9 100644
--- a/src/dnscap.h
+++ b/src/dnscap.h
@@ -297,9 +297,19 @@ struct tcpreasm {
size_t bfb_at;
};
+struct tcpstate_key {
+ iaddr* saddr;
+ iaddr* daddr;
+ unsigned sport;
+ unsigned dport;
+};
+typedef struct tcpstate_key tcpstate_key;
+
struct tcpstate {
LINK(struct tcpstate)
link;
+ tcpstate_key key;
+
iaddr saddr;
iaddr daddr;
uint16_t sport;