File: host.h

package info (click to toggle)
nfs-utils 1%3A1.2.2-4squeeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 5,396 kB
  • ctags: 3,298
  • sloc: ansic: 31,349; sh: 10,787; python: 979; makefile: 663
file content (28 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * host.h
 *
 * Defaults for nlmtest
 */

#ifndef NLMTEST_HOST_H
#define NLMTEST_HOST_H

/*
 * The host on which lockd runs
 */
#define NLMTEST_HOST		"crutch"

/*
 * NFS mount point
 */
#define NLMTEST_DIR		"../../mount/"

/*
 * The default file name and its inode version number.
 * There's no way the test program can find out the version number,
 * so you have to add it here.
 */
#define NLMTEST_FILE		NLMTEST_DIR "COPYING"
#define NLMTEST_VERSION		1

#endif /* NLMTEST_HOST_H */