]>
git.saurik.com Git - apple/xnu.git/blob - bsd/nfs/krpc.h
2 * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
25 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
28 * The NEXTSTEP Software License Agreement specifies the terms
29 * and conditions for redistribution.
33 #ifndef __NFS_KRPC_H__
34 #define __NFS_KRPC_H__
36 #include <sys/appleapiopts.h>
38 #include <sys/cdefs.h>
40 #ifdef __APPLE_API_PRIVATE
41 int krpc_call
__P((struct sockaddr_in
*sin
,
42 u_int prog
, u_int vers
, u_int func
,
43 struct mbuf
**data
, struct sockaddr_in
**from
));
45 int krpc_portmap
__P((struct sockaddr_in
*sin
,
46 u_int prog
, u_int vers
, u_int16_t
*portp
));
50 * RPC definitions for the portmapper
53 #define PMAPPROG 100000
55 #define PMAPPROC_NULL 0
56 #define PMAPPROC_SET 1
57 #define PMAPPROC_UNSET 2
58 #define PMAPPROC_GETPORT 3
59 #define PMAPPROC_DUMP 4
60 #define PMAPPROC_CALLIT 5
64 * RPC definitions for bootparamd
66 #define BOOTPARAM_PROG 100026
67 #define BOOTPARAM_VERS 1
68 #define BOOTPARAM_WHOAMI 1
69 #define BOOTPARAM_GETFILE 2
71 #endif /* __APPLE_API_PRIVATE */
72 #endif /* __NFS_KRPC_H__ */