ether.h 474 B

1234567891011121314
  1. #ifndef _NETINET_ETHER_H
  2. #define _NETINET_ETHER_H
  3. #include <netinet/if_ether.h>
  4. char *ether_ntoa (const struct ether_addr *);
  5. struct ether_addr *ether_aton (const char *);
  6. char *ether_ntoa_r (const struct ether_addr *, char *);
  7. struct ether_addr *ether_aton_r (const char *, struct ether_addr *);
  8. int ether_line(const char *, struct ether_addr *, char *);
  9. int ether_ntohost(char *, const struct ether_addr *);
  10. int ether_hostton(const char *, struct ether_addr *);
  11. #endif