aboutgitcodebugslistschat
path: root/icmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'icmp.h')
-rw-r--r--icmp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/icmp.h b/icmp.h
index 12547b7..27f0a5c 100644
--- a/icmp.h
+++ b/icmp.h
@@ -15,10 +15,12 @@ void icmp_timer(struct ctx *c, struct timespec *ts);
* union icmp_epoll_ref - epoll reference portion for ICMP tracking
* @v6: Set for IPv6 sockets or connections
* @u32: Opaque u32 value of reference
+ * @id: Associated echo identifier, needed if bind() fails
*/
union icmp_epoll_ref {
struct {
- uint32_t v6:1;
+ uint32_t v6:1,
+ id:16;
};
uint32_t u32;
};