aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/http_client.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-05-17 15:15:20 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-05-17 15:15:20 +0200
commit0790644bf8ccfbb1f09f4e7209fc18c2e97f10d8 (patch)
tree194268bffe26f55bd78bf62b1005563b327a4073 /protocols/http_client.c
parent5a348c3164f5f2d1a1f759c01e8bc7df2ad0dadb (diff)
Added http_dorequest_url().
Diffstat (limited to 'protocols/http_client.c')
-rw-r--r--protocols/http_client.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/protocols/http_client.c b/protocols/http_client.c
index 9417e200..893ba551 100644
--- a/protocols/http_client.c
+++ b/protocols/http_client.c
@@ -70,6 +70,37 @@ void *http_dorequest( char *host, int port, int ssl, char *request, http_input_f
return( req );
}
+void *http_dorequest_url( char *url_string, http_input_function func, gpointer data )
+{
+ url_t *url = g_new0( url_t, 1 );
+ char *request;
+ void *ret;
+
+ if( !url_set( url, url_string ) )
+ {
+ g_free( url );
+ return NULL;
+ }
+
+ if( url->proto != PROTO_HTTP && url->proto != PROTO_HTTPS )
+ {
+ g_free( url );
+ return NULL;
+ }
+
+ request = g_strdup_printf( "GET %s HTTP/1.0\r\n"
+ "Host: %s\r\n"
+ "User-Agent: BitlBee " BITLBEE_VERSION "\r\n"
+ "\r\n", url->file, url->host );
+
+ ret = http_dorequest( url->host, url->port,
+ url->proto == PROTO_HTTPS, request, func, data );
+
+ g_free( url );
+ g_free( request );
+ return NULL;
+}
+
/* This one is actually pretty simple... Might get more calls if we can't write
the whole request at once. */
static void http_connected( gpointer data, int source, GaimInputCondition cond )