1
2/* I cannot describe, how I laughed, when saw, that now sys/socket.h
3   includes ALL OF networking include files. 8)8)8)
4
5   Bravo! Aah, they forgot sockaddr_ll, sockaddr_pkt and sockaddr_nl...
6   Not a big problem, we only start the way to single UNIVERSAL include file:
7
8   #include <GNU-Gnu_is_Not_Unix.h>.
9
10   Jokes apart, it is full crap. Removed.
11   --ANK
12
13 */
14
15/* Union of all sockaddr types (required by IPv6 Basic API).  This is
16   somewhat evil.  */
17/* 8)8) Well, ipngwg really does strange things sometimes, but
18   not in such extent! It is removed long ago --ANK
19 */
20
21union sockaddr_union
22  {
23    struct sockaddr sa;
24    char __maxsize[128];
25  };
26