aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_bridge/ebt_stp.h
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2011-01-18 07:33:09 +0100
committerJan Engelhardt <jengelh@medozas.de>2011-01-18 07:33:09 +0100
commit0260c1dccc6a1018f8cf2c4778dffb47fc5d1c4c (patch)
tree25d7ac63c53e38444eba069f85cdf8b76b84c410 /include/linux/netfilter_bridge/ebt_stp.h
parentnetfilter: xt_connlimit: use hotdrop jump mark (diff)
downloadlinux-dev-0260c1dccc6a1018f8cf2c4778dffb47fc5d1c4c.tar.xz
linux-dev-0260c1dccc6a1018f8cf2c4778dffb47fc5d1c4c.zip
netfilter: xtables: use __uXX guarded types for userspace exports
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'include/linux/netfilter_bridge/ebt_stp.h')
-rw-r--r--include/linux/netfilter_bridge/ebt_stp.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/linux/netfilter_bridge/ebt_stp.h b/include/linux/netfilter_bridge/ebt_stp.h
index e503a0aa2728..13a0bd49a92a 100644
--- a/include/linux/netfilter_bridge/ebt_stp.h
+++ b/include/linux/netfilter_bridge/ebt_stp.h
@@ -21,24 +21,24 @@
#define EBT_STP_MATCH "stp"
struct ebt_stp_config_info {
- uint8_t flags;
- uint16_t root_priol, root_priou;
+ __u8 flags;
+ __u16 root_priol, root_priou;
char root_addr[6], root_addrmsk[6];
- uint32_t root_costl, root_costu;
- uint16_t sender_priol, sender_priou;
+ __u32 root_costl, root_costu;
+ __u16 sender_priol, sender_priou;
char sender_addr[6], sender_addrmsk[6];
- uint16_t portl, portu;
- uint16_t msg_agel, msg_ageu;
- uint16_t max_agel, max_ageu;
- uint16_t hello_timel, hello_timeu;
- uint16_t forward_delayl, forward_delayu;
+ __u16 portl, portu;
+ __u16 msg_agel, msg_ageu;
+ __u16 max_agel, max_ageu;
+ __u16 hello_timel, hello_timeu;
+ __u16 forward_delayl, forward_delayu;
};
struct ebt_stp_info {
- uint8_t type;
+ __u8 type;
struct ebt_stp_config_info config;
- uint16_t bitmask;
- uint16_t invflags;
+ __u16 bitmask;
+ __u16 invflags;
};
#endif