~ubuntu-branches/debian/wheezy/netatalk/wheezy

« back to all changes in this revision

Viewing changes to etc/cnid_dbd/db_param.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2011-06-05 21:04:21 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110605210421-19gag2srevj0ocxh
Tags: 2.2~beta4-1
* New upstream release.
  + Fixes "Internal Error" after ad_open on sparc.
    Closes: bug#606005. Thanks to Alfredo Sola.
* Adjust references to unofficial packages in README.Debian.
* Use dversionmangle (not uversionmangle) in watch file. Fix add
  leading dash (-) to upstream version in mangling.
* Update patches:
  + Drop patches 107 and 294 (Zeroconf support): Implemented
    (differently) upstream now.
  + Drop patches 109 and 112 (avoid broken XFS linkage) obsolete.
  + Drop patch 200 (hostname resolving): adopted upstream.
  + Refresh patch 205.
* Rewrite copyright file using draft 174 of DEP-5 format.
* Build-depend on and recommend unversioned (i.e. default) BerkeleyDB
  packages.
  Closes: bug#621413. Thanks to Ondřej Surý.
  Simplify suggestions on older versioned BerkeleyDB packages.
* Stop installing some documentation dropped upstream, and let CDBS
  automagically handle some of the remains.
* Update control file:
  + Bump policy compliance to standards-version 3.9.2.
  + Shorten Vcs-* URLs.
* Add patches 115 and (for automade file) 214 to avoid installing
  unneeded /default dir.
  Closes: bug#628119. Thanks to Russell Muetzelfeldt and Luk Claes.
* Don't ship .la files. Closes: bug#621849. Thanks to Andreas Metzler
  and Luk Claes.
* Stop renaming afile and achfile, dropped upstream.
* Explicitly enable DDP (AppleTalk), now disabled by default.
* Enable Zeroconf, should be stable now.
* Simplify package relations:
  + Drop (build-)dependency fallback unneeded even for oldstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: db_param.h,v 1.6 2009-12-21 07:32:01 franklahm Exp $
3
 
 *
4
2
 * Copyright (C) Joerg Lenneis 2003
 
3
 * Copyright (C) Frank Lahm 2010
5
4
 * All Rights Reserved.  See COPYING.
6
5
 */
7
6
 
11
10
#include <sys/param.h>
12
11
#include <sys/cdefs.h>
13
12
 
14
 
enum identity {
15
 
    METAD,
16
 
    CNID_DBD
17
 
};
18
 
 
19
13
struct db_param {
20
14
    char *dir;
21
15
    int logfile_autoremove;
22
16
    int cachesize;              /* in KB */
 
17
    int maxlocks;
 
18
    int maxlockobjs;
23
19
    int flush_interval;
24
20
    int flush_frequency;
25
21
    char usock_file[MAXPATHLEN + 1];    
28
24
    int max_vols;
29
25
};
30
26
 
31
 
extern struct db_param *      db_param_read  (char *, enum identity);
32
 
 
 
27
extern struct db_param *db_param_read  (char *);
33
28
 
34
29
#endif /* CNID_DBD_DB_PARAM_H */
35
30