mirror of
https://github.com/libimobiledevice/libplist
synced 2026-06-08 15:29:34 +00:00
124 lines
5.0 KiB
C
124 lines
5.0 KiB
C
/*
|
|
* libiphone.h
|
|
* Main include of libiphone
|
|
*
|
|
* Copyright (c) 2008 Jonathan Beck All Rights Reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef LIBIPHONE_H
|
|
#define LIBIPHONE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
//general errors
|
|
#define IPHONE_E_SUCCESS 0
|
|
#define IPHONE_E_INVALID_ARG -1
|
|
#define IPHONE_E_UNKNOWN_ERROR -2
|
|
#define IPHONE_E_NO_DEVICE -3
|
|
#define IPHONE_E_TIMEOUT -4
|
|
#define IPHONE_E_NOT_ENOUGH_DATA -5
|
|
#define IPHONE_E_BAD_HEADER -6
|
|
|
|
//lockdownd specific error
|
|
#define IPHONE_E_INVALID_CONF -7
|
|
#define IPHONE_E_PAIRING_FAILED -8
|
|
#define IPHONE_E_SSL_ERROR -9
|
|
|
|
//afc specific error
|
|
#define IPHONE_E_NO_SUCH_FILE -10
|
|
|
|
typedef short iphone_error_t;
|
|
|
|
enum {
|
|
AFC_FILE_READ = 0x00000002, // seems to be able to read and write files
|
|
AFC_FILE_WRITE = 0x00000003, // writes and creates a file, blanks it out, etc.
|
|
AFC_FILE_RW = 0x00000005, // seems to do the same as 2. Might even create the file.
|
|
AFC_FILE_OP4 = 0x00000004, // no idea -- appears to be "write" -- clears file beforehand like 3
|
|
AFC_FILE_OP6 = 0x00000006, // no idea yet -- appears to be the same as 5.
|
|
AFC_FILE_OP1 = 0x00000001, // no idea juuust yet... probably read.
|
|
AFC_FILE_OP0 = 0x00000000,
|
|
AFC_FILE_OP10 = 0x0000000a
|
|
};
|
|
|
|
struct iphone_device_int;
|
|
typedef struct iphone_device_int *iphone_device_t;
|
|
|
|
struct iphone_lckd_client_int;
|
|
typedef struct iphone_lckd_client_int *iphone_lckd_client_t;
|
|
|
|
struct iphone_umux_client_int;
|
|
typedef struct iphone_umux_client_int *iphone_umux_client_t;
|
|
|
|
struct iphone_afc_client_int;
|
|
typedef struct iphone_afc_client_int *iphone_afc_client_t;
|
|
|
|
struct iphone_afc_file_int;
|
|
typedef struct iphone_afc_file_int *iphone_afc_file_t;
|
|
|
|
//device related functions
|
|
iphone_error_t iphone_get_device ( iphone_device_t *device );
|
|
iphone_error_t iphone_free_device ( iphone_device_t device );
|
|
|
|
|
|
//lockdownd related functions
|
|
iphone_error_t iphone_lckd_new_client ( iphone_device_t device, iphone_lckd_client_t *client );
|
|
iphone_error_t iphone_lckd_free_client( iphone_lckd_client_t client );
|
|
|
|
iphone_error_t iphone_lckd_start_service ( iphone_lckd_client_t client, const char *service, int *port );
|
|
iphone_error_t iphone_lckd_recv ( iphone_lckd_client_t client, char **dump_data, uint32_t *recv_bytes );
|
|
iphone_error_t iphone_lckd_send ( iphone_lckd_client_t client, char *raw_data, uint32_t length, uint32_t *recv_bytes );
|
|
|
|
|
|
//usbmux related functions
|
|
iphone_error_t iphone_mux_new_client ( iphone_device_t device, uint16_t src_port, uint16_t dst_port, iphone_umux_client_t *client );
|
|
iphone_error_t iphone_mux_free_client ( iphone_umux_client_t client );
|
|
|
|
iphone_error_t iphone_mux_send ( iphone_umux_client_t client, const char *data, uint32_t datalen, uint32_t *sent_bytes );
|
|
iphone_error_t iphone_mux_recv ( iphone_umux_client_t client, char *data, uint32_t datalen, uint32_t *recv_bytes );
|
|
|
|
|
|
//afc related functions
|
|
iphone_error_t iphone_afc_new_client ( iphone_device_t device, int src_port, int dst_port, iphone_afc_client_t *client );
|
|
iphone_error_t iphone_afc_free_client ( iphone_afc_client_t client );
|
|
|
|
iphone_error_t iphone_afc_get_devinfo ( iphone_afc_client_t client, char ***infos );
|
|
iphone_error_t iphone_afc_get_dir_list ( iphone_afc_client_t client, const char *dir, char ***list);
|
|
|
|
iphone_error_t iphone_afc_get_file_attr ( iphone_afc_client_t client, const char *filename, struct stat *stbuf );
|
|
iphone_error_t iphone_afc_open_file ( iphone_afc_client_t client, const char *filename, uint32_t file_mode, iphone_afc_file_t *file );
|
|
iphone_error_t iphone_afc_close_file ( iphone_afc_client_t client, iphone_afc_file_t file);
|
|
iphone_error_t iphone_afc_read_file ( iphone_afc_client_t client, iphone_afc_file_t file, char *data, int length, uint32_t *bytes);
|
|
iphone_error_t iphone_afc_write_file ( iphone_afc_client_t client, iphone_afc_file_t file, const char *data, int length, uint32_t *bytes);
|
|
iphone_error_t iphone_afc_seek_file ( iphone_afc_client_t client, iphone_afc_file_t file, int seekpos);
|
|
iphone_error_t iphone_afc_truncate_file ( iphone_afc_client_t client, iphone_afc_file_t file, uint32_t newsize);
|
|
iphone_error_t iphone_afc_delete_file ( iphone_afc_client_t client, const char *path);
|
|
iphone_error_t iphone_afc_rename_file ( iphone_afc_client_t client, const char *from, const char *to);
|
|
iphone_error_t iphone_afc_mkdir ( iphone_afc_client_t client, const char *dir);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|