File: ether.h

package info (click to toggle)
glibc 2.19-13
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 202,472 kB
  • ctags: 140,344
  • sloc: ansic: 969,274; asm: 241,208; sh: 10,047; makefile: 8,467; cpp: 3,595; perl: 2,077; pascal: 1,839; awk: 1,704; yacc: 317; sed: 73
file content (42 lines) | stat: -rw-r--r-- 1,501 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef _NETINET_ETHER_H
#include <inet/netinet/ether.h>

libc_hidden_proto (ether_aton_r)
libc_hidden_proto (ether_ntoa_r)

/* Because the `ethers' lookup does not fit so well in the scheme we
   define a dummy struct here which helps us to use the available
   functions.  */
struct etherent
{
  const char *e_name;
  struct ether_addr e_addr;
};

struct parser_data;
extern int _nss_files_parse_etherent (char *line, struct etherent *result,
				      struct parser_data *data,
				      size_t datalen, int *errnop);
libnss_files_hidden_proto (_nss_files_parse_etherent)

#define DECLARE_NSS_PROTOTYPES(service)					      \
extern enum nss_status _nss_ ## service ## _setetherent (int __stayopen);     \
extern enum nss_status _nss_ ## service ## _endetherent (void);		      \
extern enum nss_status _nss_ ## service ## _getetherent_r		      \
                       (struct etherent *result, char *buffer,		      \
			size_t buflen, int *errnop);			      \
extern enum nss_status _nss_ ## service ## _gethostton_r		      \
                       (const char *name, struct etherent *eth,		      \
			char *buffer, size_t buflen, int *errnop);	      \
extern enum nss_status _nss_ ## service ## _getntohost_r		      \
                       (const struct ether_addr *addr,			      \
			struct etherent *eth,				      \
			char *buffer, size_t buflen, int *errnop);

DECLARE_NSS_PROTOTYPES (files)
DECLARE_NSS_PROTOTYPES (nis)
DECLARE_NSS_PROTOTYPES (nisplus)

#undef DECLARE_NSS_PROTOTYPES

#endif