2013-04-05 17:26:51 +00:00
|
|
|
#ifndef _IFADDRS_H
|
|
|
|
#define _IFADDRS_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <features.h>
|
|
|
|
#include <netinet/in.h>
|
2013-04-11 02:38:46 +00:00
|
|
|
#include <sys/socket.h>
|
2013-04-05 17:26:51 +00:00
|
|
|
|
|
|
|
struct ifaddrs {
|
|
|
|
struct ifaddrs *ifa_next;
|
|
|
|
char *ifa_name;
|
|
|
|
unsigned ifa_flags;
|
|
|
|
struct sockaddr *ifa_addr;
|
|
|
|
struct sockaddr *ifa_netmask;
|
|
|
|
union {
|
|
|
|
struct sockaddr *ifu_broadaddr;
|
|
|
|
struct sockaddr *ifu_dstaddr;
|
|
|
|
} ifa_ifu;
|
|
|
|
void *ifa_data;
|
|
|
|
};
|
|
|
|
#define ifa_broadaddr ifa_ifu.ifu_broadaddr
|
|
|
|
#define ifa_dstaddr ifa_ifu.ifu_dstaddr
|
|
|
|
|
2013-04-05 17:59:40 +00:00
|
|
|
void freeifaddrs(struct ifaddrs *ifp);
|
|
|
|
int getifaddrs(struct ifaddrs **ifap);
|
|
|
|
|
2013-04-05 17:26:51 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|