summaryrefslogtreecommitdiffstats
path: root/include/libimobiledevice
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2019-06-16 01:25:12 +0200
committerGravatar Nikias Bassen2019-06-16 01:25:12 +0200
commit7a0ab5f8f25b1c7f0c7313d7feda9c41c8058702 (patch)
tree77bf5af2a551d44536089dbf3aa26227283f3c36 /include/libimobiledevice
parentfa1c5a9029b321adc2597bbe76920e5a7efd785b (diff)
downloadlibimobiledevice-7a0ab5f8f25b1c7f0c7313d7feda9c41c8058702.tar.gz
libimobiledevice-7a0ab5f8f25b1c7f0c7313d7feda9c41c8058702.tar.bz2
syslog_relay: Fix timeout issue introduced with recent libusbmuxd commit ca245709
Diffstat (limited to 'include/libimobiledevice')
-rw-r--r--include/libimobiledevice/syslog_relay.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/libimobiledevice/syslog_relay.h b/include/libimobiledevice/syslog_relay.h
index 0080b54..ea7b649 100644
--- a/include/libimobiledevice/syslog_relay.h
+++ b/include/libimobiledevice/syslog_relay.h
@@ -34,11 +34,13 @@ extern "C" {
34 34
35/** Error Codes */ 35/** Error Codes */
36typedef enum { 36typedef enum {
37 SYSLOG_RELAY_E_SUCCESS = 0, 37 SYSLOG_RELAY_E_SUCCESS = 0,
38 SYSLOG_RELAY_E_INVALID_ARG = -1, 38 SYSLOG_RELAY_E_INVALID_ARG = -1,
39 SYSLOG_RELAY_E_MUX_ERROR = -2, 39 SYSLOG_RELAY_E_MUX_ERROR = -2,
40 SYSLOG_RELAY_E_SSL_ERROR = -3, 40 SYSLOG_RELAY_E_SSL_ERROR = -3,
41 SYSLOG_RELAY_E_UNKNOWN_ERROR = -256 41 SYSLOG_RELAY_E_NOT_ENOUGH_DATA = -4,
42 SYSLOG_RELAY_E_TIMEOUT = -5,
43 SYSLOG_RELAY_E_UNKNOWN_ERROR = -256
42} syslog_relay_error_t; 44} syslog_relay_error_t;
43 45
44typedef struct syslog_relay_client_private syslog_relay_client_private; 46typedef struct syslog_relay_client_private syslog_relay_client_private;