]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/mount_config.h
3023306e5446248b2e00047a222400903aaad58e
[nfs-utils.git] / utils / mount / mount_config.h
1 #ifndef _LINUX_MOUNT__CONFIG_H
2 #define _LINUX_MOUNT_CONFIG__H
3 /*
4  * mount_config.h -- mount configuration file routines 
5  * Copyright (C) 2008 Red Hat, Inc <nfs@redhat.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  */
18
19 inline void mount_config_init(char *);
20
21 #ifdef MOUNT_CONFIG
22 #include "conffile.h"
23 #include "xlog.h"
24
25 extern char *conf_get_mntopts(char *, char *, char *);
26
27 inline void mount_config_init(char *program)
28 {
29         xlog_open(program);
30         /*
31          * Read the the default mount options
32          */
33         conf_init();
34 }
35 inline char *mount_config_opts(char *spec, 
36                 char *mount_point, char *mount_opts)
37 {
38         return conf_get_mntopts(spec, mount_point, mount_opts);
39 }
40 #else /* MOUNT_CONFIG */
41
42 inline void mount_config_init(char *program) { }
43
44 inline char *mount_config_opts(char *spec, 
45                 char *mount_point, char *mount_opts)
46 {
47         return mount_opts;
48 }
49 #endif /* MOUNT_CONFIG */
50 #endif