summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-01-07 10:41:22 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-01-07 10:41:22 +0000
commit2c5b4f3c3d79190367595ccf84ae90f50666ddbf (patch)
treeb974a9e48124518234246de01a537308ef8c0d61 /rsyslog.h
parentcfbb74e7a59c93c3816b431ffb25adf2032c5ef0 (diff)
downloadrsyslog-2c5b4f3c3d79190367595ccf84ae90f50666ddbf.tar.gz
rsyslog-2c5b4f3c3d79190367595ccf84ae90f50666ddbf.tar.xz
rsyslog-2c5b4f3c3d79190367595ccf84ae90f50666ddbf.zip
implemented buffered read calls for the queue file
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 4404a30b..85676753 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -94,6 +94,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
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_QUEUE_FULL = -2025, /**< queue is full, operation could not be completed */
+ RS_RET_EOF = -2026, /**< end of file reached, not necessarily an error */
+ RS_RET_IO_ERROR = -2027, /**< some kind of IO error happened */
RS_RET_OK_DELETE_LISTENTRY = 1, /**< operation successful, but callee requested the deletion of an entry (special state) */
RS_RET_TERMINATE_NOW = 2, /**< operation successful, function is requested to terminate (mostly used with threads) */
RS_RET_NO_RUN = 3, /**< operation successful, but function does not like to be executed */