]> git.ipfire.org Git - thirdparty/glibc.git/blame - nis/rpcsvc/ypclnt.h
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / nis / rpcsvc / ypclnt.h
CommitLineData
6d7e8eda 1/* Copyright (C) 1996-2023 Free Software Foundation, Inc.
3e5f5557 2 This file is part of the GNU C Library.
3e5f5557
UD
3
4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
3e5f5557
UD
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
41bdb6e2 12 Lesser General Public License for more details.
3e5f5557 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6 15 License along with the GNU C Library; if not, see
5a82c748 16 <https://www.gnu.org/licenses/>. */
3e5f5557 17
6259ec0d
UD
18
19#ifndef __RPCSVC_YPCLNT_H__
20#define __RPCSVC_YPCLNT_H__
21
22#include <features.h>
23
d8cf93f4
UD
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 */
6259ec0d
UD
42
43/* Types of update operations */
d8cf93f4
UD
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 */
6259ec0d
UD
48
49__BEGIN_DECLS
50
d8cf93f4 51/* struct ypall_callback * is the arg which must be passed to yp_all. */
3e5f5557
UD
52struct ypall_callback
53 {
d8cf93f4
UD
54 int (*foreach) (int __status, char *__key, int __keylen,
55 char *__val, int __vallen, char *__data);
3e5f5557
UD
56 char *data;
57 };
6259ec0d 58
d8cf93f4 59/* External NIS client function references. */
a784e502
UD
60extern int yp_bind (const char *) __THROW;
61extern void yp_unbind (const char *) __THROW;
d8cf93f4 62extern int yp_get_default_domain (char **) __THROW;
a784e502
UD
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 **,
d8cf93f4 66 int *, char **, int *) __THROW;
a784e502
UD
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;
d8cf93f4
UD
76extern int yp_update (char *, char *, unsigned int, char *,
77 int, char *, int) __THROW;
6259ec0d 78
d8cf93f4
UD
79/* This functions exists only under BSD and Linux systems. */
80extern int __yp_check (char **) __THROW;
6259ec0d
UD
81
82__END_DECLS
83
84#endif /* __RPCSVC_YPCLNT_H__ */