File: rmtab.h

package info (click to toggle)
nfs-server 2.2beta37-1slink.1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 916 kB
  • ctags: 1,355
  • sloc: ansic: 11,214; sh: 567; makefile: 238
file content (24 lines) | stat: -rw-r--r-- 485 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * rmtab.h	Support for rmtab manipulations.
 *
 */


#ifndef RMTAB_H
#define RMTAB_H

/*
 * Location of rmtab file. /etc/rmtab is the standard on most systems.
 */
#include <paths.h>
#ifndef _PATH_RMTAB
#define _PATH_RMTAB	"/etc/rmtab"
#endif

extern void 		rmtab_add_client(dirpath, struct svc_req *);
extern mountlist *	rmtab_lst_client(void);
extern void		rmtab_del_client(dirpath, struct svc_req *);
extern void		rmtab_mdel_client(struct svc_req *rqstp);

#endif /* RMTAB_H */