aboutsummaryrefslogtreecommitdiff
path: root/cddl
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2023-07-01 07:27:31 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2023-07-01 07:30:34 +0000
commitf85b82daf1d6b6b905831a64161cdebf4307c89c (patch)
treedeb8e357d621220eba143861789dbf85e7a1535b /cddl
parentbb06a80cf60b3afba459b72b2b2842898938fecf (diff)
downloadsrc-f85b82daf1d6b6b905831a64161cdebf4307c89c.tar.gz
src-f85b82daf1d6b6b905831a64161cdebf4307c89c.zip
Diffstat (limited to 'cddl')
-rw-r--r--cddl/lib/libdtrace/siftr.d2
1 files changed, 0 insertions, 2 deletions
diff --git a/cddl/lib/libdtrace/siftr.d b/cddl/lib/libdtrace/siftr.d
index e61155036d96..791693db7638 100644
--- a/cddl/lib/libdtrace/siftr.d
+++ b/cddl/lib/libdtrace/siftr.d
@@ -44,7 +44,6 @@ typedef struct siftrinfo {
struct timeval tval;
uint8_t direction;
uint8_t ipver;
- uint32_t hash;
uint16_t tcp_localport;
uint16_t tcp_foreignport;
uint32_t snd_cwnd;
@@ -74,7 +73,6 @@ typedef struct siftrinfo {
translator siftrinfo_t < struct pkt_node *p > {
direction = p == NULL ? 0 : p->direction;
ipver = p == NULL ? 0 : p->ipver;
- hash = p == NULL ? 0 : p->hash;
tcp_localport = p == NULL ? 0 : ntohs(p->tcp_localport);
tcp_foreignport = p == NULL ? 0 : ntohs(p->tcp_foreignport);
snd_cwnd = p == NULL ? 0 : p->snd_cwnd;