summaryrefslogtreecommitdiff
path: root/includes/http.h
diff options
context:
space:
mode:
authorCracker64 <cracker642@gmail.com>2011-01-30 21:46:50 (GMT)
committer Cracker64 <cracker642@gmail.com>2011-01-30 21:46:50 (GMT)
commit8ed2947b4cbfbe21b9ba30961c469823f2e285ee (patch)
tree24ee9b111014b1df89d3b999f88037d452c9f3ec /includes/http.h
parentfcf958da21621887a80249f2af863991544815fd (diff)
downloadpowder-8ed2947b4cbfbe21b9ba30961c469823f2e285ee.zip
powder-8ed2947b4cbfbe21b9ba30961c469823f2e285ee.tar.gz
update with latest
Diffstat (limited to 'includes/http.h')
-rwxr-xr-xincludes/http.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/http.h b/includes/http.h
index 2ad7ccc..af0971c 100755
--- a/includes/http.h
+++ b/includes/http.h
@@ -24,10 +24,10 @@ void http_init(char *proxy);
void http_done(void);
char *http_simple_get(char *uri, int *ret, int *len);
-char *http_auth_get(char *uri, char *user, char *pass, int *ret, int *len);
+char *http_auth_get(char *uri, char *user, char *pass, char * session_id, int *ret, int *len);
char *http_simple_post(char *uri, char *data, int dlen, int *ret, int *len);
-void http_auth_headers(void *ctx, char *user, char *pass);
+void http_auth_headers(void *ctx, char *user, char *pass, char * session_id);
void *http_async_req_start(void *ctx, char *uri, char *data, int dlen, int keep);
void http_async_add_header(void *ctx, char *name, char *data);
@@ -36,7 +36,7 @@ void http_async_get_length(void *ctx, int *total, int *done);
char *http_async_req_stop(void *ctx, int *ret, int *len);
void http_async_req_close(void *ctx);
-char *http_multipart_post(char *uri, char **names, char **parts, int *plens, char *user, char *pass, int *ret, int *len);
+char *http_multipart_post(char *uri, char **names, char **parts, int *plens, char *user, char *pass, char * session_id, int *ret, int *len);
char *http_ret_text(int ret);