diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-07 16:10:58 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-07 16:10:58 +0000 |
commit | 549c0cccd44dc36a6ba8c480fa65bcaad6cb20ec (patch) | |
tree | ed166a3d83210c30502825d644f5be40a9624b08 /regexp.h | |
parent | 1888852c9a59631771efb5975aa51ddb0305ceb2 (diff) | |
download | rsyslog-549c0cccd44dc36a6ba8c480fa65bcaad6cb20ec.tar.gz rsyslog-549c0cccd44dc36a6ba8c480fa65bcaad6cb20ec.tar.xz rsyslog-549c0cccd44dc36a6ba8c480fa65bcaad6cb20ec.zip |
extracted regexp functionality to its own dynamically loadable module
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/regexp.h b/regexp.h new file mode 100644 index 00000000..2ff00ae7 --- /dev/null +++ b/regexp.h @@ -0,0 +1,42 @@ +/* The regexp object. It encapsulates the C regexp functionality. The primary + * purpose of this wrapper class is to enable rsyslogd core to be build without + * regexp libraries. + * + * 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_REGEXP_H +#define INCLUDED_REGEXP_H + +#include <regex.h> + +/* interfaces */ +BEGINinterface(regexp) /* name must also be changed in ENDinterface macro! */ + int (*regcomp)(regex_t *preg, const char *regex, int cflags); + int (*regexec)(const regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags); + size_t (*regerror)(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size); + void (*regfree)(regex_t *preg); +ENDinterface(regexp) +#define regexpCURR_IF_VERSION 1 /* increment whenever you change the interface structure! */ + + +/* prototypes */ +PROTOTYPEObj(regexp); + +#endif /* #ifndef INCLUDED_REGEXP_H */ |