summaryrefslogtreecommitdiffstats
path: root/runtime/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-05-27 14:49:45 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-05-27 14:49:45 +0200
commit531f27a8c3d6c988650e09bb126f792b8bac5421 (patch)
tree4988ea4f0347e8c1d4dc8fa611d31346f60e92fa /runtime/rsyslog.h
parentae387d6900c02ba655bd970c8053103a1b3f1dcd (diff)
downloadrsyslog-531f27a8c3d6c988650e09bb126f792b8bac5421.tar.gz
rsyslog-531f27a8c3d6c988650e09bb126f792b8bac5421.tar.xz
rsyslog-531f27a8c3d6c988650e09bb126f792b8bac5421.zip
implemented wildcards inside certificate name check authentication
Diffstat (limited to 'runtime/rsyslog.h')
-rw-r--r--runtime/rsyslog.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h
index 7b6d08ff..f296a608 100644
--- a/runtime/rsyslog.h
+++ b/runtime/rsyslog.h
@@ -82,6 +82,7 @@ typedef struct objInfo_s objInfo_t;
typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */
typedef rsRetVal (*errLogFunc_t)(uchar*); /* this is a trick to store a function ptr to a function returning a function ptr... */
typedef struct permittedPeers_s permittedPeers_t; /* this should go away in the long term -- rgerhards, 2008-05-19 */
+typedef struct permittedPeerWildcard_s permittedPeerWildcard_t; /* this should go away in the long term -- rgerhards, 2008-05-19 */
typedef struct tcpsrv_s tcpsrv_t;
/* some universal 64 bit define... */
@@ -236,6 +237,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_SYS_ERR = -2095, /**< system error occured (e.g. time() returned -1, quite unexpected) */
RS_RET_FILE_NO_STAT = -2096, /**< can not stat() a file */
RS_RET_FILE_TOO_LARGE = -2097, /**< a file is larger than permitted */
+ RS_RET_INVALID_WILDCARD = -2098, /**< a wildcard entry is invalid */
/* RainerScript error messages (range 1000.. 1999) */
RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */