The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

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

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $NetBSD: krpc.h,v 1.8 2005/12/11 12:25:16 christos Exp $        */
    2 
    3 #include <sys/cdefs.h>
    4 
    5 #ifdef _KERNEL
    6 int krpc_call __P((struct sockaddr_in *sin,
    7         u_int prog, u_int vers, u_int func,
    8         struct mbuf **data, struct mbuf **from, struct lwp *l));
    9 
   10 int krpc_portmap __P((struct sockaddr_in *sin,
   11         u_int prog, u_int vers, u_int proto, u_int16_t *portp,
   12         struct lwp *l));
   13 
   14 struct mbuf *xdr_string_encode __P((char *str, int len));
   15 struct mbuf *xdr_string_decode __P((struct mbuf *m, char *str, int *len_p));
   16 struct mbuf *xdr_inaddr_encode __P((struct in_addr *ia));
   17 struct mbuf *xdr_inaddr_decode __P((struct mbuf *m, struct in_addr *ia));
   18 #endif /* _KERNEL */
   19 
   20 
   21 /*
   22  * RPC definitions for the portmapper
   23  */
   24 #define PMAPPORT                111
   25 #define PMAPPROG                100000
   26 #define PMAPVERS                2
   27 #define PMAPPROC_NULL           0
   28 #define PMAPPROC_SET            1
   29 #define PMAPPROC_UNSET          2
   30 #define PMAPPROC_GETPORT        3
   31 #define PMAPPROC_DUMP           4
   32 #define PMAPPROC_CALLIT         5
   33 
   34 
   35 /*
   36  * RPC definitions for bootparamd
   37  */
   38 #define BOOTPARAM_PROG          100026
   39 #define BOOTPARAM_VERS          1
   40 #define BOOTPARAM_WHOAMI        1
   41 #define BOOTPARAM_GETFILE       2
   42 

Cache object: 692acb8dc9f8d2b3d9dc17cee6481ed1


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


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