diff options
Diffstat (limited to 'src/property_list_service.h')
-rw-r--r-- | src/property_list_service.h | 48 |
1 files changed, 11 insertions, 37 deletions
diff --git a/src/property_list_service.h b/src/property_list_service.h index 037f9aa..0e9e948 100644 --- a/src/property_list_service.h +++ b/src/property_list_service.h | |||
@@ -1,59 +1,33 @@ | |||
1 | /* | 1 | /* |
2 | * property_list_service.h | 2 | * property_list_service.h |
3 | * Definitions for the PropertyList service | 3 | * Definitions for the PropertyList service |
4 | * | 4 | * |
5 | * Copyright (c) 2010 Nikias Bassen, All Rights Reserved. | 5 | * Copyright (c) 2010 Nikias Bassen, All Rights Reserved. |
6 | * | 6 | * |
7 | * This library is free software; you can redistribute it and/or | 7 | * This library is free software; you can redistribute it and/or |
8 | * modify it under the terms of the GNU Lesser General Public | 8 | * modify it under the terms of the GNU Lesser General Public |
9 | * License as published by the Free Software Foundation; either | 9 | * License as published by the Free Software Foundation; either |
10 | * version 2.1 of the License, or (at your option) any later version. | 10 | * version 2.1 of the License, or (at your option) any later version. |
11 | * | 11 | * |
12 | * This library is distributed in the hope that it will be useful, | 12 | * This library is distributed in the hope that it will be useful, |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 | * Lesser General Public License for more details. | 15 | * Lesser General Public License for more details. |
16 | * | 16 | * |
17 | * You should have received a copy of the GNU Lesser General Public | 17 | * You should have received a copy of the GNU Lesser General Public |
18 | * License along with this library; if not, write to the Free Software | 18 | * License along with this library; if not, write to the Free Software |
19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
20 | */ | 20 | */ |
21 | #ifndef PROPERTY_LIST_SERVICE_H | ||
22 | #define PROPERTY_LIST_SERVICE_H | ||
23 | 21 | ||
24 | #include "idevice.h" | 22 | #ifndef __PROPERTY_LIST_SERVICE_H |
25 | 23 | #define __PROPERTY_LIST_SERVICE_H | |
26 | /* Error Codes */ | ||
27 | #define PROPERTY_LIST_SERVICE_E_SUCCESS 0 | ||
28 | #define PROPERTY_LIST_SERVICE_E_INVALID_ARG -1 | ||
29 | #define PROPERTY_LIST_SERVICE_E_PLIST_ERROR -2 | ||
30 | #define PROPERTY_LIST_SERVICE_E_MUX_ERROR -3 | ||
31 | #define PROPERTY_LIST_SERVICE_E_SSL_ERROR -4 | ||
32 | 24 | ||
33 | #define PROPERTY_LIST_SERVICE_E_UNKNOWN_ERROR -256 | 25 | #include "idevice.h" |
26 | #include "libimobiledevice/property_list_service.h" | ||
27 | #include "service.h" | ||
34 | 28 | ||
35 | struct property_list_service_client_private { | 29 | struct property_list_service_client_private { |
36 | idevice_connection_t connection; | 30 | service_client_t parent; |
37 | }; | 31 | }; |
38 | 32 | ||
39 | typedef struct property_list_service_client_private *property_list_service_client_t; | ||
40 | |||
41 | typedef int16_t property_list_service_error_t; | ||
42 | |||
43 | /* creation and destruction */ | ||
44 | property_list_service_error_t property_list_service_client_new(idevice_t device, uint16_t port, property_list_service_client_t *client); | ||
45 | property_list_service_error_t property_list_service_client_free(property_list_service_client_t client); | ||
46 | |||
47 | /* sending */ | ||
48 | property_list_service_error_t property_list_service_send_xml_plist(property_list_service_client_t client, plist_t plist); | ||
49 | property_list_service_error_t property_list_service_send_binary_plist(property_list_service_client_t client, plist_t plist); | ||
50 | |||
51 | /* receiving */ | ||
52 | property_list_service_error_t property_list_service_receive_plist_with_timeout(property_list_service_client_t client, plist_t *plist, unsigned int timeout); | ||
53 | property_list_service_error_t property_list_service_receive_plist(property_list_service_client_t client, plist_t *plist); | ||
54 | |||
55 | /* misc */ | ||
56 | property_list_service_error_t property_list_service_enable_ssl(property_list_service_client_t client); | ||
57 | property_list_service_error_t property_list_service_disable_ssl(property_list_service_client_t client); | ||
58 | |||
59 | #endif | 33 | #endif |