1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef _NETINET_ETHER_H
- #define _NETINET_ETHER_H 1
- #include <features.h>
- #include <netinet/if_ether.h>
- #ifdef _LIBC
- #define ETHER_FILE_NAME "/etc/ethers"
- #endif
- __BEGIN_DECLS
- #if defined __UCLIBC_HAS_SOCKET__ || defined __UCLIBC_HAS_IPV4__ || \
- defined __UCLIBC_HAS_IPV6__
- extern char *ether_ntoa (const struct ether_addr *__addr) __THROW;
- extern char *ether_ntoa_r (const struct ether_addr *__addr, char *__buf)
- __THROW;
- libc_hidden_proto(ether_ntoa_r)
- extern struct ether_addr *ether_aton (const char *__asc) __THROW;
- extern struct ether_addr *ether_aton_r (const char *__asc,
- struct ether_addr *__addr) __THROW;
- libc_hidden_proto(ether_aton_r)
- extern int ether_ntohost (char *__hostname, const struct ether_addr *__addr)
- __THROW;
- extern int ether_hostton (const char *__hostname, struct ether_addr *__addr)
- __THROW;
- extern int ether_line (const char *__line, struct ether_addr *__addr,
- char *__hostname) __THROW;
- #endif
- __END_DECLS
- #endif
|