diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-28 14:14:52 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-28 14:14:52 +0000 |
commit | 505706d958e17ef729e15c24d58305b8dff198a9 (patch) | |
tree | eab80066125f8a5637389409d532f955b8f37f5b /rsyslog.h | |
parent | bcdb6dcfd7b28e3dbf9fa0c4e9f718b6b91a7b3f (diff) | |
download | rsyslog-505706d958e17ef729e15c24d58305b8dff198a9.tar.gz rsyslog-505706d958e17ef729e15c24d58305b8dff198a9.tar.bz2 rsyslog-505706d958e17ef729e15c24d58305b8dff198a9.zip |
took TCPSend() apart and made it generic via function pointers
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -89,6 +89,10 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth 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_NO_KERNEL_LOGSRC = -2022, /**< no source for kernel logs can be obtained */ + 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_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 */ |