summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2019-09-27 12:52:03 +0200
committerGravatar Nikias Bassen2019-09-27 12:52:03 +0200
commit8f96c52de2f9f35f361d29095190fc673db7d1c1 (patch)
tree991b5f37ed8c504b2f77a8d0afc22182afbd340c /include
parentacf0a76be3c81a8ce69817af2b16a546a08f7ecb (diff)
downloadlibimobiledevice-8f96c52de2f9f35f361d29095190fc673db7d1c1.tar.gz
libimobiledevice-8f96c52de2f9f35f361d29095190fc673db7d1c1.tar.bz2
Make sure to handle timeout errors in device link service and all depending services
Diffstat (limited to 'include')
-rw-r--r--include/libimobiledevice/mobilebackup.h20
-rw-r--r--include/libimobiledevice/mobilebackup2.h12
-rw-r--r--include/libimobiledevice/mobilesync.h14
-rw-r--r--include/libimobiledevice/screenshotr.h18
4 files changed, 36 insertions, 28 deletions
diff --git a/include/libimobiledevice/mobilebackup.h b/include/libimobiledevice/mobilebackup.h
index 6da3bed..f22150d 100644
--- a/include/libimobiledevice/mobilebackup.h
+++ b/include/libimobiledevice/mobilebackup.h
@@ -3,8 +3,8 @@
* @brief Backup and restore of all device data.
* \internal
*
- * Copyright (c) 2009-2014 Martin Szulecki All Rights Reserved.
- * Copyright (c) 2010 Nikias Bassen All Rights Reserved.
+ * Copyright (c) 2010-2019 Nikias Bassen, All Rights Reserved.
+ * Copyright (c) 2009-2014 Martin Szulecki, All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -35,13 +35,15 @@ extern "C" {
/** Error Codes */
typedef enum {
- MOBILEBACKUP_E_SUCCESS = 0,
- MOBILEBACKUP_E_INVALID_ARG = -1,
- MOBILEBACKUP_E_PLIST_ERROR = -2,
- MOBILEBACKUP_E_MUX_ERROR = -3,
- MOBILEBACKUP_E_BAD_VERSION = -4,
- MOBILEBACKUP_E_REPLY_NOT_OK = -5,
- MOBILEBACKUP_E_UNKNOWN_ERROR = -256
+ MOBILEBACKUP_E_SUCCESS = 0,
+ MOBILEBACKUP_E_INVALID_ARG = -1,
+ MOBILEBACKUP_E_PLIST_ERROR = -2,
+ MOBILEBACKUP_E_MUX_ERROR = -3,
+ MOBILEBACKUP_E_SSL_ERROR = -4,
+ MOBILEBACKUP_E_RECEIVE_TIMEOUT = -5,
+ MOBILEBACKUP_E_BAD_VERSION = -6,
+ MOBILEBACKUP_E_REPLY_NOT_OK = -7,
+ MOBILEBACKUP_E_UNKNOWN_ERROR = -256
} mobilebackup_error_t;
typedef struct mobilebackup_client_private mobilebackup_client_private;
diff --git a/include/libimobiledevice/mobilebackup2.h b/include/libimobiledevice/mobilebackup2.h
index 0c42334..239c807 100644
--- a/include/libimobiledevice/mobilebackup2.h
+++ b/include/libimobiledevice/mobilebackup2.h
@@ -3,8 +3,8 @@
* @brief Backup and restore of all device data (mobilebackup2, iOS4+ only)
* \internal
*
- * Copyright (c) 2011-2014 Martin Szulecki All Rights Reserved.
- * Copyright (c) 2010-2012 Nikias Bassen All Rights Reserved.
+ * Copyright (c) 2010-2019 Nikias Bassen, All Rights Reserved.
+ * Copyright (c) 2011-2014 Martin Szulecki, All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -39,9 +39,11 @@ typedef enum {
MOBILEBACKUP2_E_INVALID_ARG = -1,
MOBILEBACKUP2_E_PLIST_ERROR = -2,
MOBILEBACKUP2_E_MUX_ERROR = -3,
- MOBILEBACKUP2_E_BAD_VERSION = -4,
- MOBILEBACKUP2_E_REPLY_NOT_OK = -5,
- MOBILEBACKUP2_E_NO_COMMON_VERSION = -6,
+ MOBILEBACKUP2_E_SSL_ERROR = -4,
+ MOBILEBACKUP2_E_RECEIVE_TIMEOUT = -5,
+ MOBILEBACKUP2_E_BAD_VERSION = -6,
+ MOBILEBACKUP2_E_REPLY_NOT_OK = -7,
+ MOBILEBACKUP2_E_NO_COMMON_VERSION = -8,
MOBILEBACKUP2_E_UNKNOWN_ERROR = -256
} mobilebackup2_error_t;
diff --git a/include/libimobiledevice/mobilesync.h b/include/libimobiledevice/mobilesync.h
index e6885c7..005ef3f 100644
--- a/include/libimobiledevice/mobilesync.h
+++ b/include/libimobiledevice/mobilesync.h
@@ -3,8 +3,8 @@
* @brief Synchronize data classes with a device and computer.
* \internal
*
+ * Copyright (c) 2010-2019 Nikias Bassen, All Rights Reserved.
* Copyright (c) 2010-2014 Martin Szulecki All Rights Reserved.
- * Copyright (c) 2010-2011 Nikias Bassen All Rights Reserved.
* Copyright (c) 2014 Christophe Fergeau All Rights Reserved.
* Copyright (c) 2010 Bryan Forbes All Rights Reserved.
* Copyright (c) 2009 Jonathan Beck All Rights Reserved.
@@ -42,11 +42,13 @@ typedef enum {
MOBILESYNC_E_INVALID_ARG = -1,
MOBILESYNC_E_PLIST_ERROR = -2,
MOBILESYNC_E_MUX_ERROR = -3,
- MOBILESYNC_E_BAD_VERSION = -4,
- MOBILESYNC_E_SYNC_REFUSED = -5,
- MOBILESYNC_E_CANCELLED = -6,
- MOBILESYNC_E_WRONG_DIRECTION = -7,
- MOBILESYNC_E_NOT_READY = -8,
+ MOBILESYNC_E_SSL_ERROR = -4,
+ MOBILESYNC_E_RECEIVE_TIMEOUT = -5,
+ MOBILESYNC_E_BAD_VERSION = -6,
+ MOBILESYNC_E_SYNC_REFUSED = -7,
+ MOBILESYNC_E_CANCELLED = -8,
+ MOBILESYNC_E_WRONG_DIRECTION = -9,
+ MOBILESYNC_E_NOT_READY = -10,
MOBILESYNC_E_UNKNOWN_ERROR = -256
} mobilesync_error_t;
diff --git a/include/libimobiledevice/screenshotr.h b/include/libimobiledevice/screenshotr.h
index c12646b..83ca96b 100644
--- a/include/libimobiledevice/screenshotr.h
+++ b/include/libimobiledevice/screenshotr.h
@@ -4,8 +4,8 @@
* @note Requires a mounted developer image.
* \internal
*
- * Copyright (c) 2010-2014 Martin Szulecki All Rights Reserved.
- * Copyright (c) 2010 Nikias Bassen All Rights Reserved.
+ * Copyright (c) 2010-2019 Nikias Bassen, All Rights Reserved.
+ * Copyright (c) 2010-2014 Martin Szulecki, All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -36,12 +36,14 @@ extern "C" {
/** Error Codes */
typedef enum {
- SCREENSHOTR_E_SUCCESS = 0,
- SCREENSHOTR_E_INVALID_ARG = -1,
- SCREENSHOTR_E_PLIST_ERROR = -2,
- SCREENSHOTR_E_MUX_ERROR = -3,
- SCREENSHOTR_E_BAD_VERSION = -4,
- SCREENSHOTR_E_UNKNOWN_ERROR = -256
+ SCREENSHOTR_E_SUCCESS = 0,
+ SCREENSHOTR_E_INVALID_ARG = -1,
+ SCREENSHOTR_E_PLIST_ERROR = -2,
+ SCREENSHOTR_E_MUX_ERROR = -3,
+ SCREENSHOTR_E_SSL_ERROR = -4,
+ SCREENSHOTR_E_RECEIVE_TIMEOUT = -5,
+ SCREENSHOTR_E_BAD_VERSION = -6,
+ SCREENSHOTR_E_UNKNOWN_ERROR = -256
} screenshotr_error_t;
typedef struct screenshotr_client_private screenshotr_client_private;