]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
9bccf70c | 2 | * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved. |
1c79356b A |
3 | * |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
43866e37 | 6 | * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. |
1c79356b | 7 | * |
43866e37 A |
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 | |
13 | * file. | |
14 | * | |
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 | |
1c79356b A |
17 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
18 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
43866e37 A |
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. | |
1c79356b A |
22 | * |
23 | * @APPLE_LICENSE_HEADER_END@ | |
24 | */ | |
25 | /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ | |
26 | /* | |
27 | * | |
28 | * The NEXTSTEP Software License Agreement specifies the terms | |
29 | * and conditions for redistribution. | |
30 | * | |
31 | */ | |
32 | ||
9bccf70c A |
33 | #ifndef __NFS_KRPC_H__ |
34 | #define __NFS_KRPC_H__ | |
35 | ||
36 | #include <sys/appleapiopts.h> | |
37 | ||
1c79356b A |
38 | #include <sys/cdefs.h> |
39 | ||
9bccf70c | 40 | #ifdef __APPLE_API_PRIVATE |
1c79356b A |
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)); | |
44 | ||
45 | int krpc_portmap __P((struct sockaddr_in *sin, | |
46 | u_int prog, u_int vers, u_int16_t *portp)); | |
47 | ||
48 | ||
49 | /* | |
50 | * RPC definitions for the portmapper | |
51 | */ | |
52 | #define PMAPPORT 111 | |
53 | #define PMAPPROG 100000 | |
54 | #define PMAPVERS 2 | |
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 | |
61 | ||
62 | ||
63 | /* | |
64 | * RPC definitions for bootparamd | |
65 | */ | |
66 | #define BOOTPARAM_PROG 100026 | |
67 | #define BOOTPARAM_VERS 1 | |
68 | #define BOOTPARAM_WHOAMI 1 | |
69 | #define BOOTPARAM_GETFILE 2 | |
70 | ||
9bccf70c A |
71 | #endif /* __APPLE_API_PRIVATE */ |
72 | #endif /* __NFS_KRPC_H__ */ |