diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-16 07:21:22 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-16 07:21:22 +0000 |
commit | 63e43e656a9f900cbc58494b2c935b677ef76b94 (patch) | |
tree | 143172910bddcb3ffa40ea17258eddabd7c7866b /parse.h | |
parent | 5e649ae5d06629585f3fd1794fc3ffec1c505e44 (diff) | |
download | rsyslog-63e43e656a9f900cbc58494b2c935b677ef76b94.tar.gz rsyslog-63e43e656a9f900cbc58494b2c935b677ef76b94.tar.xz rsyslog-63e43e656a9f900cbc58494b2c935b677ef76b94.zip |
applied patch by mildew@gmail.com to support IPv6 in $AllowedSenders
Diffstat (limited to 'parse.h')
-rw-r--r-- | parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ rsRetVal parsSkipAfterChar(rsParsObj *pThis, char c); rsRetVal parsQuotedCStr(rsParsObj *pThis, rsCStrObj **ppCStr); rsRetVal rsParsConstructFromSz(rsParsObj **ppThis, unsigned char *psz); rsRetVal rsParsDestruct(rsParsObj *pThis); -rsRetVal parsIPv4WithBits(rsParsObj *pThis, unsigned long *pIP, int *pBits); +rsRetVal parsAddrWithBits(rsParsObj *pThis, struct NetAddr **pIP, int *pBits); int parsIsAtEndOfParseString(rsParsObj *pThis); int parsGetCurrentPosition(rsParsObj *pThis); char parsPeekAtCharAtParsPtr(rsParsObj *pThis); |