summaryrefslogtreecommitdiffstats
path: root/main.c
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 /main.c
parent6039e5bbfc36aa5210295c38f251ed178ce5adbb (diff)
downloadlibimobiledevice-3dc130f3049e250b2d5c0b48af1995fda2fad3d4.tar.gz
libimobiledevice-3dc130f3049e250b2d5c0b48af1995fda2fad3d4.tar.bz2
Autotooled the project with very basic versioning support.
Diffstat (limited to 'main.c')
-rw-r--r--main.c105
1 files changed, 0 insertions, 105 deletions
diff --git a/main.c b/main.c
deleted file mode 100644
index d5c2dfa..0000000
--- a/main.c
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * libiphone main.c written by FxChiP
- * With much help from Daniel Brownlees
- */
-
-#include <stdio.h>
-#include <string.h>
-#include <errno.h>
-#include <usb.h>
-
-#include "usbmux.h"
-#include "iphone.h"
-
-#include <libxml/parser.h>
-#include <libxml/tree.h>
-#include "plist.h"
-#include "lockdown.h"
-#include "AFC.h"
-
-int debug = 1;
-
-int main(int argc, char *argv[]) {
- iPhone *phone = get_iPhone();
- if (argc > 1 && !strcasecmp(argv[1], "--debug")) debug = 1;
- else debug = 0;
- char *response = (char*)malloc(sizeof(char) * 2048);
- int bytes = 0, port = 0, i = 0;
- if (phone) printf("I got a phone.\n");
- else { printf("oops\n"); return -1; }
-
- lockdownd_client *control = new_lockdownd_client(phone);
- if (!lockdownd_hello(control)) {
- printf("Something went wrong in the lockdownd client, go take a look.\n");
- } else {
- printf("We said hello. :)\n");
- }
-
- printf("Now starting SSL.\n");
-// if (!lockdownd_start_SSL_session(control, "29942970-207913891623273984")) {
- if (!lockdownd_start_SSL_session(control, "2994593482385678618538736")) {
- printf("Error happened in GnuTLS...\n");
- } else {
- printf("... we're in SSL with the phone... !?\n");
- port = lockdownd_start_service(control, "com.apple.afc");
- }
- if (port) {
- printf("Start Service successful -- connect on port %i\n", port);
- AFClient *afc = afc_connect(phone, 3432, port);
- if (afc) {
- char **dirs;
- dirs = afc_get_dir_list(afc, "/eafaedf");
- if (!dirs) dirs = afc_get_dir_list(afc, "/");
- printf("Directory time.\n");
- for (i = 0; strcmp(dirs[i], ""); i++) {
- printf("/%s\n", dirs[i]);
- }
-
- free_dictionary(dirs);
- AFCFile *my_file = afc_open_file(afc, "/iTunesOnTheGoPlaylist.plist", AFC_FILE_READ);
- if (my_file) {
- printf("A file size: %i\n", my_file->size);
- char *file_data = (char*)malloc(sizeof(char) * my_file->size);
- bytes = afc_read_file(afc, my_file, file_data, my_file->size);
- if (bytes >= 0) {
- printf("The file's data:\n");
- fwrite(file_data, 1, bytes, stdout);
- }
- printf("\nClosing my file.\n");
- afc_close_file(afc, my_file);
- free(my_file);
- free(file_data);
- } else printf("couldn't open a file\n");
-
- my_file = afc_open_file(afc, "/readme.libiphone.fx", AFC_FILE_WRITE);
- if (my_file) {
- char *outdatafile = strdup("this is a bitchin text file\n");
- bytes = afc_write_file(afc, my_file, outdatafile, strlen(outdatafile));
- free(outdatafile);
- if (bytes > 0) printf("Wrote a surprise. ;)\n");
- else printf("I wanted to write a surprise, but... :(\n");
- afc_close_file(afc, my_file);
- free(my_file);
- }
- printf("Deleting a file...\n");
- bytes = afc_delete_file(afc, "/delme");
- if (bytes) printf("Success.\n");
- else printf("Failure.\n");
-
- printf("Renaming a file...\n");
- bytes = afc_rename_file(afc, "/renme", "/renme2");
- if (bytes > 0) printf("Success.\n");
- else printf("Failure.\n");
- }
- afc_disconnect(afc);
- } else {
- printf("Start service failure.\n");
- }
-
- printf("All done.\n");
-
- free_iPhone(phone);
-
- return 0;
-}
-