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/nfsclient/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.4 1995/12/19 23:07:11 cgd Exp $     */
    2 /* $FreeBSD: releng/5.4/sys/nfsclient/krpc.h 83651 2001-09-18 23:32:09Z peter $ */
    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

Cache object: 8087f7bc4e1364c0d66b293cb4201c90


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