summaryrefslogtreecommitdiffstats
path: root/include/libimobiledevice/debugserver.h
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-10-05 16:51:03 +0200
committerGravatar Martin Szulecki2014-10-05 16:51:03 +0200
commit5072dea1373b7c4789a9ea1e65d05ea30acf41ed (patch)
tree51bdd0584d727080fab86acd28bd4b360b2333bd /include/libimobiledevice/debugserver.h
parent5552fa0fcc7501d3206fb3d3a64c1d04062ec53b (diff)
downloadlibimobiledevice-5072dea1373b7c4789a9ea1e65d05ea30acf41ed.tar.gz
libimobiledevice-5072dea1373b7c4789a9ea1e65d05ea30acf41ed.tar.bz2
Convert int16_t macro error types into enum to improve debugging/type-checking
This simple change provides various benefits for developers like compile time errors, better auto-completition in editors and the ability of a debugger to show the constant instead of just the raw value. Thanks to Aaron Burghardt for the proposal.
Diffstat (limited to 'include/libimobiledevice/debugserver.h')
-rw-r--r--include/libimobiledevice/debugserver.h21
1 files changed, 9 insertions, 12 deletions
diff --git a/include/libimobiledevice/debugserver.h b/include/libimobiledevice/debugserver.h
index aa62746..3b1969a 100644
--- a/include/libimobiledevice/debugserver.h
+++ b/include/libimobiledevice/debugserver.h
@@ -32,18 +32,15 @@ extern "C" {
32 32
33#define DEBUGSERVER_SERVICE_NAME "com.apple.debugserver" 33#define DEBUGSERVER_SERVICE_NAME "com.apple.debugserver"
34 34
35/** @name Error Codes */ 35/** Error Codes */
36/*@{*/ 36typedef enum {
37#define DEBUGSERVER_E_SUCCESS 0 37 DEBUGSERVER_E_SUCCESS = 0,
38#define DEBUGSERVER_E_INVALID_ARG -1 38 DEBUGSERVER_E_INVALID_ARG = -1,
39#define DEBUGSERVER_E_MUX_ERROR -2 39 DEBUGSERVER_E_MUX_ERROR = -2,
40#define DEBUGSERVER_E_SSL_ERROR -3 40 DEBUGSERVER_E_SSL_ERROR = -3,
41#define DEBUGSERVER_E_RESPONSE_ERROR -4 41 DEBUGSERVER_E_RESPONSE_ERROR = -4,
42#define DEBUGSERVER_E_UNKNOWN_ERROR -256 42 DEBUGSERVER_E_UNKNOWN_ERROR = -256
43/*@}*/ 43} debugserver_error_t;
44
45/** Represents an error code. */
46typedef int16_t debugserver_error_t;
47 44
48typedef struct debugserver_client_private debugserver_client_private; 45typedef struct debugserver_client_private debugserver_client_private;
49typedef debugserver_client_private *debugserver_client_t; /**< The client handle. */ 46typedef debugserver_client_private *debugserver_client_t; /**< The client handle. */