]> arthur.barton.de Git - netatalk.git/blob - etc/cnid_dbd/db_param.h
add process id in syslog and small clean up.
[netatalk.git] / etc / cnid_dbd / db_param.h
1 /*
2  * $Id: db_param.h,v 1.1.4.4 2004-04-29 18:09:16 lenneis Exp $
3  *
4  * Copyright (C) Joerg Lenneis 2003
5  * All Rights Reserved.  See COPYING.
6  */
7
8 #ifndef CNID_DBD_DB_PARAM_H
9 #define CNID_DBD_DB_PARAM_H 1
10
11 #include <sys/param.h>
12 #include <sys/cdefs.h>
13
14
15 struct db_param {
16     int logfile_autoremove;
17     int cachesize;
18     int nosync;
19     int flush_frequency;
20     int flush_interval;
21     char usock_file[MAXPATHLEN + 1];    
22     int fd_table_size;
23     int idle_timeout;
24 };
25
26 extern struct db_param *      db_param_read  __P((char *));
27
28
29 #endif /* CNID_DBD_DB_PARAM_H */
30