diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-27 09:07:20 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-27 09:07:20 +0000 |
commit | 963ded1f45e5d4a257d2e0e51755c623f29bc103 (patch) | |
tree | db982495a52ac9f0589f1342d235de233f1a5b86 /parse.h | |
parent | 6610aee651ee0d0fb4a489eed8ddce3d250ab0d0 (diff) | |
download | rsyslog-963ded1f45e5d4a257d2e0e51755c623f29bc103.tar.gz rsyslog-963ded1f45e5d4a257d2e0e51755c623f29bc103.tar.bz2 rsyslog-963ded1f45e5d4a257d2e0e51755c623f29bc103.zip |
nearing completion of allowedSenders functionality
Diffstat (limited to 'parse.h')
-rw-r--r-- | parse.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -76,7 +76,12 @@ rsRetVal parsDelimCStr(rsParsObj *pThis, rsCStrObj **ppCStr, char cDelim, int bT rsRetVal parsSkipAfterChar(rsParsObj *pThis, char c); rsRetVal parsQuotedCStr(rsParsObj *pThis, rsCStrObj **ppCStr); -#if 0 /* later! */ +rsRetVal rsParsConstructFromSz(rsParsObj **ppThis, char *psz); +rsRetVal rsParsDestruct(rsParsObj *pThis); +rsRetVal parsIPv4WithBits(rsParsObj *pThis, unsigned long *pIP, int *pBits); +int parsIsAtEndOfParseString(rsParsObj *pThis); + +#if 0 /* later! - but leave it in in case we need it some day... */ /* Parse a property * This is a complex parsing routine. It parses an property * entry suitable for use in the property replacer. It is currently |