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, 4 insertions, 4 deletions
diff --git a/src/idevice.h b/src/idevice.h
index 4aab440..5d83e4c 100644
--- a/src/idevice.h
+++ b/src/idevice.h
@@ -30,19 +30,19 @@ enum connection_type {
30 CONNECTION_USBMUXD = 1 30 CONNECTION_USBMUXD = 1
31}; 31};
32 32
33struct ssl_data_int { 33struct ssl_data_private {
34 gnutls_certificate_credentials_t certificate; 34 gnutls_certificate_credentials_t certificate;
35 gnutls_session_t session; 35 gnutls_session_t session;
36}; 36};
37typedef struct ssl_data_int *ssl_data_t; 37typedef struct ssl_data_private *ssl_data_t;
38 38
39struct idevice_connection_int { 39struct idevice_connection_private {
40 enum connection_type type; 40 enum connection_type type;
41 void *data; 41 void *data;
42 ssl_data_t ssl_data; 42 ssl_data_t ssl_data;
43}; 43};
44 44
45struct idevice_int { 45struct idevice_private {
46 char *uuid; 46 char *uuid;
47 enum connection_type conn_type; 47 enum connection_type conn_type;
48 void *conn_data; 48 void *conn_data;