Merge from vendor branch FILE:
[dragonfly.git] / contrib / hostapd-0.4.9 / config_types.h
1 #ifndef CONFIG_TYPES_H
2 #define CONFIG_TYPES_H
3
4 struct hostapd_ip_addr {
5         union {
6                 struct in_addr v4;
7 #ifdef CONFIG_IPV6
8                 struct in6_addr v6;
9 #endif /* CONFIG_IPV6 */
10         } u;
11         int af; /* AF_INET / AF_INET6 */
12 };
13
14 #endif /* CONFIG_TYPES_H */