From 202db37a6f2cc43c06467473d9970677f6997ce3 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Fri, 5 Apr 2013 19:26:51 +0200 Subject: add getifaddrs supports ipv4 and ipv6, but not the "extended" usage where usage statistics and other info are assigned to ifa_data members of duplicate entries with AF_PACKET family. --- include/ifaddrs.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 include/ifaddrs.h (limited to 'include') diff --git a/include/ifaddrs.h b/include/ifaddrs.h new file mode 100644 index 00000000..96b5ae90 --- /dev/null +++ b/include/ifaddrs.h @@ -0,0 +1,31 @@ +#ifndef _IFADDRS_H +#define _IFADDRS_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include + +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 + +#ifdef __cplusplus +} +#endif + +#endif + -- cgit v1.2.1