diff options
Diffstat (limited to 'icmp_flow.h')
-rw-r--r-- | icmp_flow.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/icmp_flow.h b/icmp_flow.h index 5a2eed9..fb93801 100644 --- a/icmp_flow.h +++ b/icmp_flow.h @@ -13,7 +13,6 @@ * @seq: Last sequence number sent to tap, host order, -1: not sent yet * @sock: "ping" socket * @ts: Last associated activity from tap, seconds - * @id: ICMP id for the flow as seen by the guest */ struct icmp_ping_flow { /* Must be first element */ @@ -22,10 +21,9 @@ struct icmp_ping_flow { int seq; int sock; time_t ts; - uint16_t id; }; -bool icmp_ping_timer(const struct ctx *c, union flow *flow, +bool icmp_ping_timer(const struct ctx *c, const struct icmp_ping_flow *pingf, const struct timespec *now); #endif /* ICMP_FLOW_H */ |