diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2025-05-21 01:31:03 +0000 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2025-05-21 01:34:11 +0000 |
commit | 2a7e45eef31292cf9dd82caf3346eb2acb5b6225 (patch) | |
tree | 06c3c5a33b827a17950967f799d32b6aae365eb2 /containers.h | |
parent | 93bf91b4012a28610672d2266366dfa0a663b70f (diff) |
Diffstat (limited to 'containers.h')
-rw-r--r-- | containers.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/containers.h b/containers.h index a82e8ddee46a..8fd813aff342 100644 --- a/containers.h +++ b/containers.h @@ -28,6 +28,10 @@ struct timespec64 { int64_t tv_nsec; }; +enum { + WGALLOWEDIP_REMOVE_ME = 1U << 0, +}; + struct wgallowedip { uint16_t family; union { @@ -35,6 +39,7 @@ struct wgallowedip { struct in6_addr ip6; }; uint8_t cidr; + uint32_t flags; struct wgallowedip *next_allowedip; }; |