2013-06-26 01:15:27 +00:00
|
|
|
#ifndef _NETINET_ETHER_H
|
|
|
|
#define _NETINET_ETHER_H
|
|
|
|
|
2015-05-08 08:46:50 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-06-26 01:15:27 +00:00
|
|
|
#include <netinet/if_ether.h>
|
|
|
|
|
|
|
|
char *ether_ntoa (const struct ether_addr *);
|
|
|
|
struct ether_addr *ether_aton (const char *);
|
|
|
|
char *ether_ntoa_r (const struct ether_addr *, char *);
|
|
|
|
struct ether_addr *ether_aton_r (const char *, struct ether_addr *);
|
2013-07-01 17:50:02 +00:00
|
|
|
int ether_line(const char *, struct ether_addr *, char *);
|
|
|
|
int ether_ntohost(char *, const struct ether_addr *);
|
|
|
|
int ether_hostton(const char *, struct ether_addr *);
|
2013-06-26 01:15:27 +00:00
|
|
|
|
2015-05-08 08:46:50 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-06-26 01:15:27 +00:00
|
|
|
#endif
|