summaryrefslogtreecommitdiffstats
path: root/AFC.h
diff options
context:
space:
mode:
authorGravatar Matt Colyer2008-07-29 10:13:37 -0700
committerGravatar Matt Colyer2008-07-29 10:13:37 -0700
commit3dc130f3049e250b2d5c0b48af1995fda2fad3d4 (patch)
tree9d801459ef68e83a0d4ca038c0589d8e4c8aa2b2 /AFC.h
parent6039e5bbfc36aa5210295c38f251ed178ce5adbb (diff)
downloadlibimobiledevice-3dc130f3049e250b2d5c0b48af1995fda2fad3d4.tar.gz
libimobiledevice-3dc130f3049e250b2d5c0b48af1995fda2fad3d4.tar.bz2
Autotooled the project with very basic versioning support.
Diffstat (limited to 'AFC.h')
-rw-r--r--AFC.h80
1 files changed, 0 insertions, 80 deletions
diff --git a/AFC.h b/AFC.h
deleted file mode 100644
index 787b9fe..0000000
--- a/AFC.h
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * AFC.h
- * Defines and structs and the like for the built-in AFC client
- * Written by FxChiP
- */
-
-#include "usbmux.h"
-#include "iphone.h"
-
-#include <string.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-typedef struct {
- //const uint32 header1 = 0x36414643; // '6AFC' or 'CFA6' when sent ;)
- uint32 header1, header2;
- //const uint32 header2 = 0x4141504C; // 'AAPL' or 'LPAA' when sent ;)
- uint32 entire_length, unknown1, this_length, unknown2, packet_num, unknown3, operation, unknown4;
-} AFCPacket;
-
-typedef struct {
- usbmux_tcp_header *connection;
- iPhone *phone;
- AFCPacket *afc_packet;
- int file_handle;
-} AFClient;
-
-typedef struct {
- uint32 filehandle, unknown1, size, unknown2;
-} AFCFilePacket;
-
-typedef struct {
- uint32 filehandle, blocks, size, type;
-} AFCFile;
-
-typedef struct __AFCToken {
- struct __AFCToken *last, *next;
- char *token;
-} AFCToken;
-
-enum {
- S_IFREG = 0,
- S_IFDIR = 1
-};
-
-enum {
- AFC_FILE_READ = 0x00000002,
- AFC_FILE_WRITE = 0x00000003
-};
-
-enum {
- AFC_ERROR = 0x00000001,
- AFC_GET_INFO = 0x0000000a,
- AFC_GET_DEVINFO = 0x0000000b,
- AFC_LIST_DIR = 0x00000003,
- AFC_DELETE = 0x00000008,
- AFC_RENAME = 0x00000018,
- AFC_SUCCESS_RESPONSE = 0x00000002,
- AFC_FILE_OPEN = 0x0000000d,
- AFC_FILE_CLOSE = 0x00000014,
- AFC_FILE_HANDLE = 0x0000000e,
- AFC_READ = 0x0000000f,
- AFC_WRITE = 0x00000010
-};
-
-AFClient *afc_connect(iPhone *phone, int s_port, int d_port);
-void afc_disconnect(AFClient *client);
-int count_nullspaces(char *string, int number);
-char **make_strings_list(char *tokens, int true_length);
-int dispatch_AFC_packet(AFClient *client, char *data, int length);
-int receive_AFC_data(AFClient *client, char **dump_here);
-
-char **afc_get_dir_list(AFClient *client, char *dir);
-AFCFile *afc_get_file_info(AFClient *client, char *path);
-AFCFile *afc_open_file(AFClient *client, const char *filename, uint32 file_mode);
-void afc_close_file(AFClient *client, AFCFile *file);
-int afc_read_file(AFClient *client, AFCFile *file, char *data, int length);
-int afc_write_file(AFClient *client, AFCFile *file, char *data, int length);
-int afc_delete_file(AFClient *client, const char *path);
-int afc_rename_file(AFClient *client, const char *from, const char *to);