[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]

FreeBSD/Linux Kernel Cross Reference
sys/nfsclient/krpc.h

Version: -  FREEBSD  -  FREEBSD7  -  FREEBSD70  -  FREEBSD6  -  FREEBSD63  -  FREEBSD62  -  FREEBSD61  -  FREEBSD60  -  FREEBSD5  -  FREEBSD55  -  FREEBSD54  -  FREEBSD53  -  FREEBSD52  -  FREEBSD51  -  FREEBSD50  -  FREEBSD4  -  FREEBSD3  -  FREEBSD22  -  linux-2.6  -  linux-2.4.22  -  MK83  -  MK84  -  PLAN9  -  DFBSD  -  NETBSD  -  NETBSD4  -  NETBSD3  -  NETBSD20  -  OPENBSD  -  xnu-517  -  xnu-792  -  xnu-792.6.70  -  xnu-1228  -  OPENSOLARIS  -  minix-3-1-1  -  TRUSTEDBSD-SEBSD  -  FREEBSD-LIBC  -  FREEBSD7-LIBC  -  FREEBSD6-LIBC  -  GLIBC27 
SearchContext: -  none  -  excerpts  -  bigexcerpts 

  1 /*      $NetBSD: krpc.h,v 1.4 1995/12/19 23:07:11 cgd Exp $     */
  2 /* $FreeBSD: src/sys/nfsclient/krpc.h,v 1.8 2001/09/18 23:31:50 peter Exp $     */
  3 
  4 #include <sys/cdefs.h>
  5 
  6 struct mbuf;
  7 struct thread;
  8 struct sockaddr;
  9 struct sockaddr_in;
 10 
 11 int krpc_call(struct sockaddr_in *_sin,
 12         u_int prog, u_int vers, u_int func,
 13         struct mbuf **data, struct sockaddr **from, struct thread *td);
 14 
 15 int krpc_portmap(struct sockaddr_in *_sin,
 16         u_int prog, u_int vers, u_int16_t *portp, struct thread *td);
 17 
 18 struct mbuf *xdr_string_encode(char *str, int len);
 19 
 20 /*
 21  * RPC definitions for the portmapper
 22  */
 23 #define PMAPPORT                111
 24 #define PMAPPROG                100000
 25 #define PMAPVERS                2
 26 #define PMAPPROC_NULL           0
 27 #define PMAPPROC_SET            1
 28 #define PMAPPROC_UNSET          2
 29 #define PMAPPROC_GETPORT        3
 30 #define PMAPPROC_DUMP           4
 31 #define PMAPPROC_CALLIT         5
 32 

[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.