cleanup specfile for packaging
[profile/ivi/gpsd.git] / sockaddr.h
1 /* klugey def'n of a socket address struct helps hide IPV4 vs. IPV6 ugliness */
2
3 typedef union sockaddr_u {
4     struct sockaddr sa;
5     struct sockaddr_in sa_in;
6     struct sockaddr_in6 sa_in6;
7 } sockaddr_t;
8
9 /* sockaddr.h ends here */