summaryrefslogtreecommitdiffstats
path: root/nanohttp/nanohttp-client.h
diff options
context:
space:
mode:
authorGravatar snowdrop2003-12-18 11:14:37 +0000
committerGravatar snowdrop2003-12-18 11:14:37 +0000
commitef184dc4c57cf56643c3446e7d527b4ab0bc7df6 (patch)
treea6e2931bee55e945ba4ff199c7de3c524ef84c0c /nanohttp/nanohttp-client.h
parent20089651b2aeb13a7ad374d19b2fc3b26b29455a (diff)
downloadcsoap-ef184dc4c57cf56643c3446e7d527b4ab0bc7df6.tar.gz
csoap-ef184dc4c57cf56643c3446e7d527b4ab0bc7df6.tar.bz2
begin implementing httpc_get and httpc_post
Diffstat (limited to 'nanohttp/nanohttp-client.h')
-rw-r--r--nanohttp/nanohttp-client.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/nanohttp/nanohttp-client.h b/nanohttp/nanohttp-client.h
index 60abc57..7fad690 100644
--- a/nanohttp/nanohttp-client.h
+++ b/nanohttp/nanohttp-client.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: nanohttp-client.h,v 1.1 2003/12/11 14:51:04 snowdrop Exp $
+ * $Id: nanohttp-client.h,v 1.2 2003/12/18 11:14:37 snowdrop Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -54,19 +54,22 @@ typedef void (*httpc_response_start_callback)(httpc_conn_t*, void*, hpair_t*,
httpc_conn_t* httpc_new();
void httpc_free(httpc_conn_t* conn);
-void httpc_add_header(httpc_conn_t *conn, const char* key, const char* value);
int httpc_set_header(httpc_conn_t *conn, const char* key, const char* value);
hresponse_t *httpc_get(httpc_conn_t *conn, const char *url);
-hresponse_t *httpc_post(httpc_conn_t *conn, const char *url, const char *content);
+hresponse_t *httpc_post(httpc_conn_t *conn, const char *url,
+ int conten_size, const char *content);
int httpc_get_cb(httpc_conn_t *conn, const char *url,
httpc_response_start_callback start_cb,
httpc_response_callback cb, void *userdata);
+
int httpc_post_cb(httpc_conn_t *conn, const char *url,
httpc_response_start_callback start_cb,
- httpc_response_callback cb, void *userdata);
+ httpc_response_callback cb, int content_size,
+ char *content, void *userdata);
+
#endif