ypclnt.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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