removed Z39.50 Proxy functionality from parameters global overrides and moved into...
[pazpar2-moved-to-github.git] / src / settings.h
1 /* $Id: settings.h,v 1.18 2007-06-06 11:49:48 marc Exp $
2    Copyright (c) 2006-2007, Index Data.
3
4 This file is part of Pazpar2.
5
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 #ifndef SETTINGS_H
23 #define SETTINGS_H
24
25 #define PZ_PIGGYBACK      0
26 #define PZ_ELEMENTS       1
27 #define PZ_REQUESTSYNTAX  2
28 #define PZ_CCLMAP         3
29 #define PZ_XSLT           4
30 #define PZ_NATIVESYNTAX   5
31 #define PZ_AUTHENTICATION 6
32 #define PZ_ALLOW          7
33 #define PZ_MAXRECS        8
34 #define PZ_ID             9
35 #define PZ_NAME          10
36 #define PZ_QUERYENCODING 11
37 #define PZ_IP            12
38 #define PZ_ZPROXY        13
39
40
41 struct setting
42 {
43     int precedence;
44     char *target;
45     char *name;
46     char *value;
47     struct setting *next;
48 };
49
50 int settings_num(void);
51 void settings_read(const char *path);
52 int settings_offset(const char *name);
53 int settings_offset_cprefix(const char *name);
54 void init_settings(void);
55
56 #endif
57
58 /*
59  * Local variables:
60  * c-basic-offset: 4
61  * indent-tabs-mode: nil
62  * End:
63  * vim: shiftwidth=4 tabstop=8 expandtab
64  */