summaryrefslogtreecommitdiff
path: root/gweb/gweb.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-11-01 14:40:46 +0100
committerMarcel Holtmann <marcel@holtmann.org>2010-11-01 14:40:46 +0100
commit893403b7cd6793e97fe617218a70bf0d0bfa7142 (patch)
tree9bd8dff74a88362b7c50a3b32dec888014438a8d /gweb/gweb.c
parent406ca6dc6ee38abca6dd9f20c458ee37d6b7c963 (diff)
downloadconnman-893403b7cd6793e97fe617218a70bf0d0bfa7142.tar.gz
connman-893403b7cd6793e97fe617218a70bf0d0bfa7142.tar.bz2
connman-893403b7cd6793e97fe617218a70bf0d0bfa7142.zip
Split the GET and POST method APIs
Diffstat (limited to 'gweb/gweb.c')
-rw-r--r--gweb/gweb.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/gweb/gweb.c b/gweb/gweb.c
index eb31ae94..8f5fc0fe 100644
--- a/gweb/gweb.c
+++ b/gweb/gweb.c
@@ -569,7 +569,7 @@ static void resolv_result(GResolvResultStatus status,
start_request(session);
}
-guint g_web_request(GWeb *web, GWebMethod method, const char *url,
+guint g_web_request_get(GWeb *web, const char *url,
GWebResultFunc func, gpointer user_data)
{
struct web_session *session;
@@ -629,6 +629,24 @@ guint g_web_request(GWeb *web, GWebMethod method, const char *url,
return web->next_query_id++;
}
+guint g_web_request_post(GWeb *web, const char *url,
+ const char *type, guint8 *data, gsize length,
+ GWebResultFunc func, gpointer user_data)
+{
+ if (web == NULL || url == NULL)
+ return 0;
+
+ return 0;
+}
+
+gboolean g_web_cancel_request(GWeb *web, guint id)
+{
+ if (web == NULL)
+ return FALSE;
+
+ return TRUE;
+}
+
guint16 g_web_result_get_status(GWebResult *result)
{
if (result == NULL)