mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 05:00:42 +01:00
This was not honored by the new ompipe module, because it is a local file directive (it was applied to pipes as a side-effect of using the same module for pipes and files...). I now made this a global, so that semantics are the same as previously. Not really nice, but probably the best thing to do in the current situation (everything else would involve much more overhead --- leave that for the new config system).
39 lines
1.5 KiB
C
39 lines
1.5 KiB
C
/* omfile.h
|
|
* These are the definitions for the build-in file output module.
|
|
*
|
|
* File begun on 2007-07-21 by RGerhards (extracted from syslogd.c)
|
|
*
|
|
* Copyright 2007-2010 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 OMFILE_H_INCLUDED
|
|
#define OMFILE_H_INCLUDED 1
|
|
|
|
/* prototypes */
|
|
rsRetVal modInitFile(int iIFVersRequested __attribute__((unused)), int *ipIFVersProvided, rsRetVal (**pQueryEtryPt)(), rsRetVal (*pHostQueryEtryPt)(uchar*, rsRetVal (**)()), modInfo_t*);
|
|
|
|
/* the define below is dirty, but we need it for ompipe integration. There is no
|
|
* other way to have the functionality (well, one way would be to go through the
|
|
* globals, but that seems not yet justified. -- rgerhards, 2010-03-01
|
|
*/
|
|
uchar *pszFileDfltTplName;
|
|
#endif /* #ifndef OMFILE_H_INCLUDED */
|
|
/* vi:set ai:
|
|
*/
|