003 File Manager
Current Path:
/usr/include/rpcsvc
usr
/
include
/
rpcsvc
/
📁
..
📄
bootparam_prot.h
(2.49 KB)
📄
bootparam_prot.x
(3.29 KB)
📄
crypt.h
(1.3 KB)
📄
crypt.x
(3.65 KB)
📄
key_prot.h
(6.57 KB)
📄
key_prot.x
(6.58 KB)
📄
klm_prot.h
(2.54 KB)
📄
klm_prot.x
(3.93 KB)
📄
mount.h
(4.49 KB)
📄
mount.x
(7.09 KB)
📄
nfs_prot.h
(34.94 KB)
📄
nfs_prot.x
(22.03 KB)
📄
nis.h
(19.28 KB)
📄
nis.x
(16.26 KB)
📄
nis_cache.h
(3.21 KB)
📄
nis_cache.x
(2.64 KB)
📄
nis_callback.h
(2.83 KB)
📄
nis_callback.x
(2.35 KB)
📄
nis_db.h
(3.68 KB)
📄
nis_object.x
(12.42 KB)
📄
nis_tags.h
(5.42 KB)
📄
nislib.h
(7.03 KB)
📄
nlm_prot.h
(13.78 KB)
📄
nlm_prot.x
(6.38 KB)
📄
rex.h
(4.37 KB)
📄
rex.x
(7.47 KB)
📄
rnusers.h
(3.06 KB)
📄
rnusers.x
(3.29 KB)
📄
rquota.h
(4.06 KB)
📄
rquota.x
(3.46 KB)
📄
rstat.h
(3.25 KB)
📄
rstat.x
(4.26 KB)
📄
rwall.h
(2.12 KB)
📄
rwall.x
(1.7 KB)
📄
sm_inter.h
(2.67 KB)
📄
sm_inter.x
(4.06 KB)
📄
spray.h
(1.39 KB)
📄
spray.x
(2.71 KB)
📄
yp.h
(11.12 KB)
📄
yp.x
(8.03 KB)
📄
yp_prot.h
(10.34 KB)
📄
ypclnt.h
(3.85 KB)
📄
yppasswd.h
(1.12 KB)
📄
yppasswd.x
(2.6 KB)
📄
ypupdate_prot.h
(3.26 KB)
📄
ypupdate_prot.x
(2.3 KB)
📄
ypxfrd.h
(2.33 KB)
📄
ypxfrd.x
(6.96 KB)
Editing: ypclnt.h
/*- * SPDX-License-Identifier: BSD-3-Clause * * Copyright (c) 1992/3 Theo de Raadt <deraadt@fsa.ca> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote * products derived from this software without specific prior written * permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD$ */ #ifndef _RPCSVC_YPCLNT_H_ #define _RPCSVC_YPCLNT_H_ #include <sys/cdefs.h> #define YPERR_BADARGS 1 /* args to function are bad */ #define YPERR_RPC 2 /* RPC failure */ #define YPERR_DOMAIN 3 /* can't bind to a server for domain */ #define YPERR_MAP 4 /* no such map in server's domain */ #define YPERR_KEY 5 /* no such key in map */ #define YPERR_YPERR 6 /* some internal YP server or client error */ #define YPERR_RESRC 7 /* local resource allocation failure */ #define YPERR_NOMORE 8 /* no more records in map database */ #define YPERR_PMAP 9 /* can't communicate with portmapper */ #define YPERR_YPBIND 10 /* can't communicate with ypbind */ #define YPERR_YPSERV 11 /* can't communicate with ypserv */ #define YPERR_NODOM 12 /* local domain name not set */ #define YPERR_BADDB 13 /* YP data base is bad */ #define YPERR_VERS 14 /* YP version mismatch */ #define YPERR_ACCESS 15 /* access violation */ #define YPERR_BUSY 16 /* database is busy */ /* * Types of update operations */ #define YPOP_CHANGE 1 /* change, do not add */ #define YPOP_INSERT 2 /* add, do not change */ #define YPOP_DELETE 3 /* delete this entry */ #define YPOP_STORE 4 /* add, or change */ struct ypall_callback { /* return non-0 to stop getting called */ int (*foreach)(unsigned long, char *, int, char *, int, void *); char *data; /* opaque pointer for use of callback fn */ }; struct dom_binding; struct ypmaplist; struct ypall_callback; __BEGIN_DECLS int yp_bind(char *dom); int _yp_dobind(char *dom, struct dom_binding **ypdb); void yp_unbind(char *dom); int yp_get_default_domain(char **domp); int yp_match(char *indomain, char *inmap, const char *inkey, int inkeylen, char **outval, int *outvallen); int yp_first(char *indomain, char *inmap, char **outkey, int *outkeylen, char **outval, int *outvallen); int yp_next(char *indomain, char *inmap, char *inkey, int inkeylen, char **outkey, int *outkeylen, char **outval, int *outvallen); int yp_maplist(char *indomain, struct ypmaplist **outmaplist); int yp_master(char *indomain, char *inmap, char **outname); int yp_order(char *indomain, char *inmap, int *outorder); int yp_all(char *indomain, char *inmap, struct ypall_callback *incallback); const char *yperr_string(int incode); const char *ypbinderr_string(int incode); int ypprot_err(unsigned int incode); __END_DECLS #endif /* _RPCSVC_YPCLNT_H_ */
Upload File
Create Folder