source: trunk/minix/include/net/gen/if_ether.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 528 bytes
Line 
1/*
2server/ip/gen/if_ether.h
3*/
4
5#ifndef __SERVER__IP__GEN__IF_ETHER_H__
6#define __SERVER__IP__GEN__IF_ETHER_H__
7
8struct ether_addr;
9
10#define _PATH_ETHERS "/etc/ethers"
11
12char *ether_ntoa _ARGS(( struct ether_addr *e ));
13struct ether_addr *ether_aton _ARGS(( const char *s ));
14int ether_ntohost _ARGS(( char *hostname, struct ether_addr *e ));
15int ether_hostton _ARGS(( char *hostname, struct ether_addr *e ));
16int ether_line _ARGS(( char *l, struct ether_addr *e, char *hostname ));
17
18#endif /* __SERVER__IP__GEN__IF_ETHER_H__ */
Note: See TracBrowser for help on using the repository browser.