xref: /netbsd-src/external/bsd/am-utils/dist/libamu/amu.h (revision 8bae5d409deb915cf7c8f0539fae22ff2cb8a313)
1*8bae5d40Schristos /*	$NetBSD: amu.h,v 1.1.1.3 2015/01/17 16:34:18 christos Exp $	*/
2a53f50b9Schristos 
3a53f50b9Schristos /*
4*8bae5d40Schristos  * Copyright (c) 1997-2014 Erez Zadok
5a53f50b9Schristos  * Copyright (c) 1990 Jan-Simon Pendry
6a53f50b9Schristos  * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
7a53f50b9Schristos  * Copyright (c) 1990 The Regents of the University of California.
8a53f50b9Schristos  * All rights reserved.
9a53f50b9Schristos  *
10a53f50b9Schristos  * This code is derived from software contributed to Berkeley by
11a53f50b9Schristos  * Jan-Simon Pendry at Imperial College, London.
12a53f50b9Schristos  *
13a53f50b9Schristos  * Redistribution and use in source and binary forms, with or without
14a53f50b9Schristos  * modification, are permitted provided that the following conditions
15a53f50b9Schristos  * are met:
16a53f50b9Schristos  * 1. Redistributions of source code must retain the above copyright
17a53f50b9Schristos  *    notice, this list of conditions and the following disclaimer.
18a53f50b9Schristos  * 2. Redistributions in binary form must reproduce the above copyright
19a53f50b9Schristos  *    notice, this list of conditions and the following disclaimer in the
20a53f50b9Schristos  *    documentation and/or other materials provided with the distribution.
21*8bae5d40Schristos  * 3. Neither the name of the University nor the names of its contributors
22a53f50b9Schristos  *    may be used to endorse or promote products derived from this software
23a53f50b9Schristos  *    without specific prior written permission.
24a53f50b9Schristos  *
25a53f50b9Schristos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26a53f50b9Schristos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27a53f50b9Schristos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28a53f50b9Schristos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29a53f50b9Schristos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30a53f50b9Schristos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31a53f50b9Schristos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32a53f50b9Schristos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33a53f50b9Schristos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34a53f50b9Schristos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35a53f50b9Schristos  * SUCH DAMAGE.
36a53f50b9Schristos  *
37a53f50b9Schristos  *
38a53f50b9Schristos  * File: am-utils/libamu/amu.h
39a53f50b9Schristos  *
40a53f50b9Schristos  */
41a53f50b9Schristos 
42a53f50b9Schristos #ifndef _AMU_H
43a53f50b9Schristos #define _AMU_H
44a53f50b9Schristos 
45a53f50b9Schristos /*
46a53f50b9Schristos  * Decide what maximum level of NFS server to try and mount with.
47a53f50b9Schristos  */
48*8bae5d40Schristos #if defined(HAVE_FS_NFS4)
49*8bae5d40Schristos # define NFS_VERS_MAX NFS_VERSION4
50*8bae5d40Schristos #elif defined(HAVE_FS_NFS3)
51a53f50b9Schristos # define NFS_VERS_MAX NFS_VERSION3
52a53f50b9Schristos #else /* not HAVE_FS_NFS3 */
53a53f50b9Schristos # define NFS_VERS_MAX NFS_VERSION
54a53f50b9Schristos #endif /* not HAVE_FS_NFS3 */
55*8bae5d40Schristos # define NFS_VERS_MIN NFS_VERSION
56a53f50b9Schristos 
57a53f50b9Schristos /* some systems like ncr2 do not define this in <rpcsvc/mount.h> */
58a53f50b9Schristos #ifndef MNTPATHLEN
59a53f50b9Schristos # define MNTPATHLEN 1024
60a53f50b9Schristos #endif /* not MNTPATHLEN */
61a53f50b9Schristos #ifndef MNTNAMLEN
62a53f50b9Schristos # define MNTNAMLEN 255
63a53f50b9Schristos #endif /* not MNTNAMLEN */
64a53f50b9Schristos 
65a53f50b9Schristos /*
66a53f50b9Schristos  * external definitions for building libamu.a
67a53f50b9Schristos  */
68a53f50b9Schristos extern voidp amqproc_null_1(voidp argp, CLIENT *rqstp);
69a53f50b9Schristos extern amq_mount_tree_p *amqproc_mnttree_1(amq_string *argp, CLIENT *rqstp);
70a53f50b9Schristos extern voidp amqproc_umnt_1(amq_string *argp, CLIENT *rqstp);
71a53f50b9Schristos extern amq_mount_stats *amqproc_stats_1(voidp argp, CLIENT *rqstp);
72a53f50b9Schristos extern amq_mount_tree_list *amqproc_export_1(voidp argp, CLIENT *rqstp);
73a53f50b9Schristos extern int *amqproc_setopt_1(amq_setopt *argp, CLIENT *rqstp);
74a53f50b9Schristos extern amq_mount_info_list *amqproc_getmntfs_1(voidp argp, CLIENT *rqstp);
75a53f50b9Schristos extern int *amqproc_mount_1(voidp argp, CLIENT *rqstp);
76a53f50b9Schristos extern amq_string *amqproc_getvers_1(voidp argp, CLIENT *rqstp);
77a53f50b9Schristos 
78a53f50b9Schristos extern long get_server_pid(void);
79a53f50b9Schristos 
80a53f50b9Schristos #endif /* not _AMU_H */
81