We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cda1735 commit 215fa6bCopy full SHA for 215fa6b
1 file changed
driver/configuration_windows.go
@@ -20,11 +20,17 @@ const (
20
AdapterStateUp AdapterState = 1
21
)
22
23
+type AllowedIpFlag uint32
24
+
25
+const (
26
+ AllowedIpRemove AllowedIpFlag = 1 << 0
27
+)
28
29
type AllowedIP struct {
30
Address [16]byte
31
AddressFamily winipcfg.AddressFamily
32
Cidr uint8
- _ [4]byte
33
+ Flags AllowedIpFlag
34
}
35
36
type PeerFlag uint32
0 commit comments