shared/cfgparser.h
b151ef55
 /*
5c4d94a9
  *  Copyright (C) 2002 - 2005 Tomasz Kojm <tkojm@clamav.net>
b151ef55
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
30738099
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
b151ef55
  */
 
36f2038b
 #ifndef __CFGPARSER_H
 #define __CFGPARSER_H
b151ef55
 
 #define LINE_LENGTH 1024
 
cb3cb6df
 #define OPT_STR 1 /* string argument (space delimited) */
b151ef55
 #define OPT_NUM 2 /* numerical argument */
 #define OPT_COMPSIZE 3 /* convert kilobytes (k) and megabytes (m) to bytes */
5c4d94a9
 #define OPT_BOOL 4 /* boolean value */
 #define OPT_FULLSTR 5 /* string argument, but get a full line */
cb3cb6df
 #define OPT_QUOTESTR 6 /* string argument, (space delimited unless the argument starts with ' or ".  If the argument starts with a quote character, then the argument data is what appears between the starting quote character and the matching ending quote character.) */
b151ef55
 
6650026e
 #define OPT_CLAMD 1
 #define OPT_FRESHCLAM 2
 
b151ef55
 struct cfgoption {
     const char *name;
6650026e
     unsigned short argtype;
5c4d94a9
     int numarg;
     const char *strarg;
     short multiple;
6650026e
     unsigned short owner;
b151ef55
 };
 
 struct cfgstruct {
9c1c9007
     char *optname;
     char *strarg;
b151ef55
     int numarg;
5c4d94a9
     short enabled;
     short multiple;
b151ef55
     struct cfgstruct *nextarg;
     struct cfgstruct *next;
 };
 
6650026e
 extern struct cfgoption cfg_options[];
b151ef55
 
5c4d94a9
 struct cfgstruct *getcfg(const char *cfgfile, int verbose);
b151ef55
 struct cfgstruct *cfgopt(const struct cfgstruct *copt, const char *optname);
9c1c9007
 void freecfg(struct cfgstruct *copt);
 
b151ef55
 #endif