summaryrefslogtreecommitdiffstats
path: root/src/download.h
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2012-02-05 22:18:15 +0100
committerGravatar Nikias Bassen2012-02-05 22:18:15 +0100
commitfdea23960ae9ea99fa28db49c4da5791a8affca7 (patch)
treef1e06bb4be19ae3cd0482f8de8c8ed849831bc7a /src/download.h
parent19d604ff509afd00f83a2687b243774d18654b65 (diff)
downloadidevicerestore-fdea23960ae9ea99fa28db49c4da5791a8affca7.tar.gz
idevicerestore-fdea23960ae9ea99fa28db49c4da5791a8affca7.tar.bz2
download and cache version information from itunes.com
Diffstat (limited to 'src/download.h')
-rw-r--r--src/download.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/download.h b/src/download.h
new file mode 100644
index 0000000..4900b18
--- /dev/null
+++ b/src/download.h
@@ -0,0 +1,24 @@
+/*
+ * download.h
+ * file download helper functions (header file)
+ *
+ * Copyright (c) 2012 Nikias Bassen. 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
+ */
+#include <stdint.h>
+
+int download_to_buffer(const char* url, char** buf, uint32_t* length);
+int download_to_file(const char* url, const char* filename);