2015-01-16 15:06:48 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2015, Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _IFADDRS_H
|
|
|
|
#define _IFADDRS_H
|
|
|
|
|
2019-07-20 13:02:02 +03:00
|
|
|
#include <features.h>
|
2015-01-16 15:06:48 +03:00
|
|
|
|
2019-07-20 13:02:02 +03:00
|
|
|
#ifdef _DEFAULT_SOURCE
|
2015-04-16 08:29:58 +03:00
|
|
|
|
|
|
|
|
2015-02-27 00:02:37 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-01-16 15:06:48 +03:00
|
|
|
struct ifaddrs {
|
|
|
|
struct ifaddrs *ifa_next; /* Next item in list */
|
|
|
|
const char *ifa_name; /* Name of interface */
|
|
|
|
unsigned int ifa_flags; /* Flags from SIOCGIFFLAGS */
|
|
|
|
struct sockaddr *ifa_addr; /* Address of interface */
|
|
|
|
struct sockaddr *ifa_netmask; /* Netmask of interface */
|
|
|
|
struct sockaddr *ifa_dstaddr;
|
|
|
|
#define ifa_broadaddr ifa_dstaddr
|
|
|
|
void *ifa_data; /* Address-specific data */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int getifaddrs(struct ifaddrs **ifap);
|
|
|
|
void freeifaddrs(struct ifaddrs *ifa);
|
|
|
|
|
|
|
|
|
2015-02-27 00:02:37 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-04-16 08:29:58 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-01-16 15:06:48 +03:00
|
|
|
#endif
|