4 * Copyright (c) 1997-2009 Erez Zadok
5 * Copyright (c) 1990 Jan-Simon Pendry
6 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
7 * Copyright (c) 1990 The Regents of the University of California.
10 * This code is derived from software contributed to Berkeley by
11 * Jan-Simon Pendry at Imperial College, London.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgment:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 * File: am-utils/conf/nfs_prot/nfs_prot_openbsd.h
46 #ifndef _AMU_NFS_PROT_H
47 #define _AMU_NFS_PROT_H
49 #ifdef HAVE_RPCSVC_NFS_PROT_H
50 # include <rpcsvc/nfs_prot.h>
51 #endif /* HAVE_RPCSVC_NFS_PROT_H */
52 #ifdef HAVE_NFS_RPCV2_H
53 # include <nfs/rpcv2.h>
54 #endif /* HAVE_NFS_RPCV2_H */
57 # define NFS_NPROCS 26
58 #endif /* not NFS_NPROCS */
61 #endif /* HAVE_NFS_NFS_H */
63 #ifdef HAVE_UFS_UFS_UFSMOUNT_H
64 # ifdef HAVE_UFS_UFS_EXTATTR_H
66 * Need to define _KERNEL to include protected definition of struct
67 * ufs_extattr_per_mount, which is used in struct ufsmount in
68 * <ufs/ufs/ufsmount.h>, but is NOT protected by _KERNEL there.
71 # include <ufs/ufs/extattr.h>
73 # endif /* HAVE_UFS_UFS_EXTATTR_H */
76 # endif /* not MAXQUOTAS */
78 * XXX: fake struct nextexport: trying to include proper headers here is too
79 * difficult: those headers drag many other headers, etc.
81 struct netexport
{ int this_is_SO_wrong
; };
82 # include <ufs/ufs/ufsmount.h>
83 #endif /* HAVE_UFS_UFS_UFSMOUNT_H */
89 #define dr_drok_u diropres
90 #define ca_where where
91 #define da_fhandle dir
93 #define dl_entries entries
95 #define dr_status status
96 #define dr_u diropres_u
97 #define drok_attributes attributes
98 #define drok_fhandle file
100 #define la_fhandle from
102 #define na_atime atime
103 #define na_ctime ctime
104 #define na_fileid fileid
107 #define na_mtime mtime
108 #define na_nlink nlink
113 #define ne_cookie cookie
114 #define ne_fileid fileid
116 #define ne_nextentry nextentry
117 #define ns_attr_u attributes
118 #define ns_status status
119 #define ns_u attrstat_u
120 #define nt_seconds seconds
121 #define nt_useconds useconds
122 #define rda_cookie cookie
123 #define rda_count count
124 #define rda_fhandle dir
125 #define rdr_reply_u reply
126 #define rdr_status status
127 #define rdr_u readdirres_u
128 #define rlr_data_u data
129 #define rlr_status status
130 #define rlr_u readlinkres_u
131 #define rna_from from
133 #define rr_status status
134 #define sag_fhandle file
135 #define sfr_reply_u reply
136 #define sfr_status status
137 #define sfr_u statfsres_u
138 #define sfrok_bavail bavail
139 #define sfrok_bfree bfree
140 #define sfrok_blocks blocks
141 #define sfrok_bsize bsize
142 #define sfrok_tsize tsize
143 #define sla_from from
144 #define wra_fhandle file
150 typedef attrstat nfsattrstat
;
151 typedef createargs nfscreateargs
;
152 typedef dirlist nfsdirlist
;
153 typedef diropargs nfsdiropargs
;
154 typedef diropres nfsdiropres
;
155 typedef entry nfsentry
;
156 typedef fattr nfsfattr
;
157 typedef ftype nfsftype
;
158 typedef linkargs nfslinkargs
;
159 typedef readargs nfsreadargs
;
160 typedef readdirargs nfsreaddirargs
;
161 typedef readdirres nfsreaddirres
;
162 typedef readlinkres nfsreadlinkres
;
163 typedef readres nfsreadres
;
164 typedef renameargs nfsrenameargs
;
165 typedef sattrargs nfssattrargs
;
166 typedef statfsokres nfsstatfsokres
;
167 typedef statfsres nfsstatfsres
;
168 typedef symlinkargs nfssymlinkargs
;
169 typedef writeargs nfswriteargs
;
173 * OpenBSD 2.2 has NFS V3, but it is undefined in the header files.
174 * so I define everything that's needed for NFS V3 here.
179 * turn of this function so it cannot be used! OpenBSD seems to
180 * require that NFS sockets be connected.
181 * See m4/macros/check_nfs_socket_connection.m4.
184 # define MOUNT_NFS3 MOUNT_NFS
185 # define MNTOPT_NFS3 "nfs"
187 #endif /* NFSMNT_NFSV3 */
189 #endif /* not _AMU_NFS_PROT_H */