summaryrefslogtreecommitdiffstats
path: root/src/idevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/idevice.h')
-rw-r--r--src/idevice.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/idevice.h b/src/idevice.h
index 7a8f4ce..2509e48 100644
--- a/src/idevice.h
+++ b/src/idevice.h
@@ -52,6 +52,13 @@
52 52
53#define DEVICE_VERSION(maj, min, patch) (((maj & 0xFF) << 16) | ((min & 0xFF) << 8) | (patch & 0xFF)) 53#define DEVICE_VERSION(maj, min, patch) (((maj & 0xFF) << 16) | ((min & 0xFF) << 8) | (patch & 0xFF))
54 54
55#define DEVICE_CLASS_IPHONE 1
56#define DEVICE_CLASS_IPAD 2
57#define DEVICE_CLASS_IPOD 3
58#define DEVICE_CLASS_APPLETV 4
59#define DEVICE_CLASS_WATCH 5
60#define DEVICE_CLASS_UNKNOWN 255
61
55struct ssl_data_private { 62struct ssl_data_private {
56#if defined(HAVE_OPENSSL) 63#if defined(HAVE_OPENSSL)
57 SSL *session; 64 SSL *session;
@@ -89,6 +96,7 @@ struct idevice_private {
89 enum idevice_connection_type conn_type; 96 enum idevice_connection_type conn_type;
90 void *conn_data; 97 void *conn_data;
91 int version; 98 int version;
99 int device_class;
92}; 100};
93 101
94#endif 102#endif