summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-12-28 17:52:37 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-12-28 17:52:37 +0000
commit78544a417cbc290d56bb2e0e6a07b3f6b0a2b3af (patch)
tree969503509f332c3ad6cd20a7749ff429d3d524d2 /rsyslog.h
parent25f911954f1c2a72dade9dff5d1ebeb8be2d0783 (diff)
downloadrsyslog-78544a417cbc290d56bb2e0e6a07b3f6b0a2b3af.tar.gz
rsyslog-78544a417cbc290d56bb2e0e6a07b3f6b0a2b3af.tar.xz
rsyslog-78544a417cbc290d56bb2e0e6a07b3f6b0a2b3af.zip
backported rsyslog v3 omgssapi - to provide forward compatibility from v2
to v3. Will release as v1.21.2, because some field experience is needed before it becomes stable v2.
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/rsyslog.h b/rsyslog.h
index c08c5db9..330b9a43 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -69,6 +69,10 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_INVALID_SOURCE = -2019, /**< source (address) invalid for some reason */
RS_RET_ADDRESS_UNKNOWN = -2020, /**< an address is unknown - not necessarily an error */
RS_RET_MALICIOUS_ENTITY = -2021, /**< there is an malicious entity involved */
+ RS_RET_TCP_SEND_ERROR = -2023, /**< error during TCP send process */
+ RS_RET_GSS_SEND_ERROR = -2024, /**< error during GSS (via TCP) send process */
+ RS_RET_TCP_SOCKCREATE_ERR = -2025, /**< error during creation of TCP socket */
+ RS_RET_GSS_SENDINIT_ERROR = -2024, /**< error during GSS (via TCP) send initialization process */
RS_RET_OK_DELETE_LISTENTRY = 1, /**< operation successful, but callee requested the deletion of an entry (special state) */
RS_RET_OK = 0 /**< operation successful */
};