diff options
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; }; |