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.6 2003/05/05 13:21:00 yamt 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));
    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 
   13 struct mbuf *xdr_string_encode __P((char *str, int len));
   14 struct mbuf *xdr_string_decode __P((struct mbuf *m, char *str, int *len_p));
   15 struct mbuf *xdr_inaddr_encode __P((struct in_addr *ia));
   16 struct mbuf *xdr_inaddr_decode __P((struct mbuf *m, struct in_addr *ia));
   17 #endif /* _KERNEL */
   18 
   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 
   33 
   34 /*
   35  * RPC definitions for bootparamd
   36  */
   37 #define BOOTPARAM_PROG          100026
   38 #define BOOTPARAM_VERS          1
   39 #define BOOTPARAM_WHOAMI        1
   40 #define BOOTPARAM_GETFILE       2
   41 

Cache object: 061efeb80269ae76f86884b364d1eb60


[ 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.