mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-14 21:10:19 +00:00
ae7a94e5e3
this means that *always* libnsl is only built as shared library for backward compatibility and the NSS modules libnss_nis and libnss_nisplus are not built at all, libnsl's headers aren't installed. This compatibility is kept only for architectures and ABIs that have been added in or before version 2.28. Replacement implementations based on TIRPC, which additionally support IPv6, are available from <https://github.com/thkukuk/>. This change does not affect libnss_compat which does not depended on libnsl since 2.27 and thus can be used without NIS. libnsl code depends on Sun RPC, e.g. on --enable-obsolete-rpc (installed libnsl headers use installed Sun RPC headers), which will be removed in the following commit.
44 lines
1.4 KiB
C
44 lines
1.4 KiB
C
#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;
|
|
};
|
|
|
|
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)
|
|
|
|
#undef DECLARE_NSS_PROTOTYPES
|
|
|
|
# endif /* !_ISOMAC */
|
|
#endif
|