summaryrefslogtreecommitdiffstats
path: root/nanohttp/nanohttp-client.h
diff options
context:
space:
mode:
authorGravatar snowdrop2004-01-13 12:31:57 +0000
committerGravatar snowdrop2004-01-13 12:31:57 +0000
commitfd81cc7f3e234d16aeb18e5893d684a1cfe2729e (patch)
tree921242b0361a13fa93d38fb3166c029c8421a6d1 /nanohttp/nanohttp-client.h
parent62c6d2b165911e5bc96da38395e0fe2fb219fcc1 (diff)
downloadcsoap-fd81cc7f3e234d16aeb18e5893d684a1cfe2729e.tar.gz
csoap-fd81cc7f3e234d16aeb18e5893d684a1cfe2729e.tar.bz2
optimized code
Diffstat (limited to 'nanohttp/nanohttp-client.h')
-rw-r--r--nanohttp/nanohttp-client.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/nanohttp/nanohttp-client.h b/nanohttp/nanohttp-client.h
index 19ae110..fcb84ea 100644
--- a/nanohttp/nanohttp-client.h
+++ b/nanohttp/nanohttp-client.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: nanohttp-client.h,v 1.4 2004/01/05 10:42:15 snowdrop Exp $
+ * $Id: nanohttp-client.h,v 1.5 2004/01/13 12:31:57 snowdrop Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -75,13 +75,17 @@ int httpc_post_cb(httpc_conn_t *conn, const char *url,
/*
Chunked POST Module
*/
+
+/* Returns 0 if success, >0 otherwise */
+/* do not use this
int httpc_post_open(httpc_conn_t *conn, const char *url);
+
int httpc_post_send(httpc_conn_t *conn, const char* buffer, int bufsize);
hresponse_t *httpc_post_finish(httpc_conn_t *conn);
int httpc_post_finish_cb(httpc_conn_t *conn,
httpc_response_start_callback start_cb,
httpc_response_callback cb, void *userdata);
-
+*/
#endif