diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-19 11:20:18 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-19 11:20:18 +0000 |
commit | c5f99dc22253e5bd1adbfbfa7c3fd842554b9016 (patch) | |
tree | b278b6bf78bf0c31fba6c89b8200c41f214878e6 /conf.h | |
parent | cd2b24dfc45c4b115ace6d17ab0237511fef3d66 (diff) | |
download | rsyslog-c5f99dc22253e5bd1adbfbfa7c3fd842554b9016.tar.gz rsyslog-c5f99dc22253e5bd1adbfbfa7c3fd842554b9016.tar.xz rsyslog-c5f99dc22253e5bd1adbfbfa7c3fd842554b9016.zip |
- moved config file code to its own file
- finally made CONT_LINES in config the only standard support (the code
contained code for other case, which were never executed by the
preprocessor)
Diffstat (limited to 'conf.h')
-rw-r--r-- | conf.h | 46 |
1 files changed, 46 insertions, 0 deletions
@@ -0,0 +1,46 @@ +/* Definitions for config file handling (not yet an object). + * + * Copyright 2008 Rainer Gerhards and Adiscon GmbH. + * + * This file is part of rsyslog. + * + * Rsyslog 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 3 of the License, or + * (at your option) any later version. + * + * Rsyslog 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 Rsyslog. If not, see <http://www.gnu.org/licenses/>. + * + * A copy of the GPL can be found in the file "COPYING" in this distribution. + */ +#ifndef INCLUDED_CONF_H +#define INCLUDED_CONF_H + +/* definitions used for doNameLine to differentiate between different command types + * (with otherwise identical code). This is a left-over from the previous config + * system. It stays, because it is still useful. So do not wonder why it looks + * somewhat strange (at least its name). -- rgerhards, 2007-08-01 + */ +enum eDirective { DIR_TEMPLATE = 0, DIR_OUTCHANNEL = 1, DIR_ALLOWEDSENDER = 2}; + +/* propotypes */ +rsRetVal doNameLine(uchar **pp, void* pVal); +rsRetVal cfsysline(uchar *p); +rsRetVal doModLoad(uchar **pp, __attribute__((unused)) void* pVal); +rsRetVal doIncludeLine(uchar **pp, __attribute__((unused)) void* pVal); +rsRetVal cfline(uchar *line, selector_t **pfCurr); +rsRetVal processConfFile(uchar *pConfFile); + +/* TODO: remove them below (means move the config init code) -- rgerhards, 2008-02-19 */ +extern uchar *pModDir; /* read-only after startup */ +extern EHostnameCmpMode eDfltHostnameCmpMode; +extern rsCStrObj *pDfltHostnameCmp; +extern rsCStrObj *pDfltProgNameCmp; + +#endif /* #ifndef INCLUDED_CONF_H */ |