summaryrefslogtreecommitdiffstats
path: root/src/service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/service.h')
-rw-r--r--src/service.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/service.h b/src/service.h
new file mode 100644
index 0000000..e498ed7
--- /dev/null
+++ b/src/service.h
@@ -0,0 +1,59 @@
1/*
2 * service.h
3 * Definitions for the generic service implementation
4 *
5 * Copyright (c) 2013 Nikias Bassen, All Rights Reserved.
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
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
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21#ifndef SERVICE_H
22#define SERVICE_H
23
24#include "libimobiledevice/lockdown.h"
25#include "idevice.h"
26
27/* Error Codes */
28#define SERVICE_E_SUCCESS 0
29#define SERVICE_E_INVALID_ARG -1
30#define SERVICE_E_MUX_ERROR -3
31#define SERVICE_E_SSL_ERROR -4
32#define SERVICE_E_START_SERVICE_ERROR -5
33#define SERVICE_E_UNKNOWN_ERROR -256
34
35struct service_client_private {
36 idevice_connection_t connection;
37};
38
39typedef struct service_client_private *service_client_t;
40
41typedef int16_t service_error_t;
42
43/* creation and destruction */
44service_error_t service_client_new(idevice_t device, lockdownd_service_descriptor_t service, service_client_t *client);
45service_error_t service_start_service(idevice_t device, const char* service_name, service_client_t *client);
46service_error_t service_client_free(service_client_t client);
47
48/* sending */
49service_error_t service_send(service_client_t client, const char *data, uint32_t size, uint32_t *sent);
50
51/* receiving */
52service_error_t service_receive_with_timeout(service_client_t client, char *data, uint32_t size, uint32_t *received, unsigned int timeout);
53service_error_t service_receive(service_client_t client, char *data, uint32_t size, uint32_t *received);
54
55/* misc */
56service_error_t service_enable_ssl(service_client_t client);
57service_error_t service_disable_ssl(service_client_t client);
58
59#endif