]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/contrib/hostapd/config_types.h
Clone Kip's Xen on stable/6 tree so that I can work on improving FreeBSD/amd64
[FreeBSD/FreeBSD.git] / 6 / contrib / hostapd / 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 */