6913f5e54700ffdd3a87a59d51dc9e8f1fb8bd34
[gapil.git] / ifconf.h
1 struct ifconf {
2     int                ifc_len; /* size of buffer */
3     union {
4         char *         ifc_buf; /* buffer address */
5         struct ifreq * ifc_req; /* array of structures */
6     };
7 };