aboutsummaryrefslogtreecommitdiff
path: root/src/trunnel/netinfo.trunnel
diff options
context:
space:
mode:
Diffstat (limited to 'src/trunnel/netinfo.trunnel')
-rw-r--r--src/trunnel/netinfo.trunnel4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trunnel/netinfo.trunnel b/src/trunnel/netinfo.trunnel
index 83c3a9e40f..2c4b7a7591 100644
--- a/src/trunnel/netinfo.trunnel
+++ b/src/trunnel/netinfo.trunnel
@@ -7,10 +7,10 @@ const NETINFO_ADDR_TYPE_IPV6 = 6;
struct netinfo_addr {
u8 addr_type;
u8 len;
- union addr[addr_type] {
+ union addr[addr_type] with length len {
NETINFO_ADDR_TYPE_IPV4: u32 ipv4;
NETINFO_ADDR_TYPE_IPV6: u8 ipv6[16];
- default: fail;
+ default: ignore;
};
}