1/* Copyright (C) 1996-2022 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
17
18
19#ifndef __RPCSVC_YPCLNT_H__
20#define __RPCSVC_YPCLNT_H__
21
22#include <features.h>
23
24/* Some defines */
25#define YPERR_SUCCESS 0 /* There is no error */
26#define YPERR_BADARGS 1 /* Args to function are bad */
27#define YPERR_RPC 2 /* RPC failure */
28#define YPERR_DOMAIN 3 /* Can't bind to a server with this domain */
29#define YPERR_MAP 4 /* No such map in server's domain */
30#define YPERR_KEY 5 /* No such key in map */
31#define YPERR_YPERR 6 /* Internal yp server or client error */
32#define YPERR_RESRC 7 /* Local resource allocation failure */
33#define YPERR_NOMORE 8 /* No more records in map database */
34#define YPERR_PMAP 9 /* Can't communicate with portmapper */
35#define YPERR_YPBIND 10 /* Can't communicate with ypbind */
36#define YPERR_YPSERV 11 /* Can't communicate with ypserv */
37#define YPERR_NODOM 12 /* Local domain name not set */
38#define YPERR_BADDB 13 /* yp data base is bad */
39#define YPERR_VERS 14 /* YP version mismatch */
40#define YPERR_ACCESS 15 /* Access violation */
41#define YPERR_BUSY 16 /* Database is busy */
42
43/* Types of update operations */
44#define YPOP_CHANGE 1 /* Change, do not add */
45#define YPOP_INSERT 2 /* Add, do not change */
46#define YPOP_DELETE 3 /* Delete this entry */
47#define YPOP_STORE 4 /* Add, or change */
48
49__BEGIN_DECLS
50
51/* struct ypall_callback * is the arg which must be passed to yp_all. */
52struct ypall_callback
53 {
54 int (*foreach) (int __status, char *__key, int __keylen,
55 char *__val, int __vallen, char *__data);
56 char *data;
57 };
58
59/* External NIS client function references. */
60extern int yp_bind (const char *) __THROW;
61extern void yp_unbind (const char *) __THROW;
62extern int yp_get_default_domain (char **) __THROW;
63extern int yp_match (const char *, const char *, const char *,
64 const int, char **, int *) __THROW;
65extern int yp_first (const char *, const char *, char **,
66 int *, char **, int *) __THROW;
67extern int yp_next (const char *, const char *, const char *,
68 const int, char **, int *, char **, int *) __THROW;
69extern int yp_master (const char *, const char *, char **) __THROW;
70extern int yp_order (const char *, const char *, unsigned int *) __THROW;
71extern int yp_all (const char *, const char *,
72 const struct ypall_callback *) __THROW;
73extern const char *yperr_string (const int) __THROW;
74extern const char *ypbinderr_string (const int) __THROW;
75extern int ypprot_err (const int) __THROW;
76extern int yp_update (char *, char *, unsigned int, char *,
77 int, char *, int) __THROW;
78
79/* This functions exists only under BSD and Linux systems. */
80extern int __yp_check (char **) __THROW;
81
82__END_DECLS
83
84#endif /* __RPCSVC_YPCLNT_H__ */
85

source code of glibc/nis/rpcsvc/ypclnt.h