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