/
githubmirror
/
glibc
Обзор
Документация
Войти
/
githubmirror
/
glibc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
include/netinet/ether.h
37 строк
1 KB
Florian Weimer
nss_files: Consolidate line parse declarations in <nss_files.h>
21 июл 2020, 08:33
21 июл 2020, 08:33
e9b2340
Код
Авторство
О чём код?
#ifndef _NETINET_ETHER_H #include <inet/netinet/ether.h> # ifndef _ISOMAC 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; }; #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) #undef DECLARE_NSS_PROTOTYPES # endif /* !_ISOMAC */ #endif