include/rpc/pmap_prot.h

http://www.minix3.org/ · C Header · 106 lines · 30 code · 8 blank · 68 comment · 0 complexity · 7975cffc49eec86b5862427c97fa6866 MD5 · raw file

  1. /* $NetBSD: pmap_prot.h,v 1.9 2005/02/03 04:39:32 perry Exp $ */
  2. /*
  3. * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  4. * unrestricted use provided that this legend is included on all tape
  5. * media and as a part of the software program in whole or part. Users
  6. * may copy or modify Sun RPC without charge, but are not authorized
  7. * to license or distribute it to anyone else except as part of a product or
  8. * program developed by the user.
  9. *
  10. * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  11. * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  12. * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  13. *
  14. * Sun RPC is provided with no support and without any obligation on the
  15. * part of Sun Microsystems, Inc. to assist in its use, correction,
  16. * modification or enhancement.
  17. *
  18. * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  19. * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  20. * OR ANY PART THEREOF.
  21. *
  22. * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  23. * or profits or other special, indirect and consequential damages, even if
  24. * Sun has been advised of the possibility of such damages.
  25. *
  26. * Sun Microsystems, Inc.
  27. * 2550 Garcia Avenue
  28. * Mountain View, California 94043
  29. *
  30. * from: @(#)pmap_prot.h 1.14 88/02/08 SMI
  31. * @(#)pmap_prot.h 2.1 88/07/29 4.0 RPCSRC
  32. */
  33. /*
  34. * pmap_prot.h
  35. * Protocol for the local binder service, or pmap.
  36. *
  37. * Copyright (C) 1984, Sun Microsystems, Inc.
  38. *
  39. * The following procedures are supported by the protocol:
  40. *
  41. * PMAPPROC_NULL() returns ()
  42. * takes nothing, returns nothing
  43. *
  44. * PMAPPROC_SET(struct pmap) returns (bool_t)
  45. * TRUE is success, FALSE is failure. Registers the tuple
  46. * [prog, vers, prot, port].
  47. *
  48. * PMAPPROC_UNSET(struct pmap) returns (bool_t)
  49. * TRUE is success, FALSE is failure. Un-registers pair
  50. * [prog, vers]. prot and port are ignored.
  51. *
  52. * PMAPPROC_GETPORT(struct pmap) returns (long unsigned).
  53. * 0 is failure. Otherwise returns the port number where the pair
  54. * [prog, vers] is registered. It may lie!
  55. *
  56. * PMAPPROC_DUMP() RETURNS (struct pmaplist *)
  57. *
  58. * PMAPPROC_CALLIT(unsigned, unsigned, unsigned, string<>)
  59. * RETURNS (port, string<>);
  60. * usage: encapsulatedresults = PMAPPROC_CALLIT(prog, vers, proc, encapsulatedargs);
  61. * Calls the procedure on the local machine. If it is not registered,
  62. * this procedure is quite; ie it does not return error information!!!
  63. * This procedure only is supported on rpc/udp and calls via
  64. * rpc/udp. This routine only passes null authentication parameters.
  65. * This file has no interface to xdr routines for PMAPPROC_CALLIT.
  66. *
  67. * The service supports remote procedure calls on udp/ip or tcp/ip socket 111.
  68. */
  69. #ifndef _RPC_PMAP_PROT_H_
  70. #define _RPC_PMAP_PROT_H_
  71. #include <sys/cdefs.h>
  72. #define PMAPPORT ((u_short)111)
  73. #define PMAPPROG ((u_long)100000)
  74. #define PMAPVERS ((u_long)2)
  75. #define PMAPVERS_PROTO ((u_long)2)
  76. #define PMAPVERS_ORIG ((u_long)1)
  77. #define PMAPPROC_NULL ((u_long)0)
  78. #define PMAPPROC_SET ((u_long)1)
  79. #define PMAPPROC_UNSET ((u_long)2)
  80. #define PMAPPROC_GETPORT ((u_long)3)
  81. #define PMAPPROC_DUMP ((u_long)4)
  82. #define PMAPPROC_CALLIT ((u_long)5)
  83. struct pmap {
  84. long unsigned pm_prog;
  85. long unsigned pm_vers;
  86. long unsigned pm_prot;
  87. long unsigned pm_port;
  88. };
  89. struct pmaplist {
  90. struct pmap pml_map;
  91. struct pmaplist *pml_next;
  92. };
  93. __BEGIN_DECLS
  94. extern bool_t xdr_pmap (XDR *, struct pmap *);
  95. extern bool_t xdr_pmaplist (XDR *, struct pmaplist **);
  96. extern bool_t xdr_pmaplist_ptr (XDR *, struct pmaplist *);
  97. __END_DECLS
  98. #endif /* !_RPC_PMAP_PROT_H_ */