From 7b4f90b2919c85fcafa663c96c754eb10c3595b8 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Thu, 21 Aug 2014 15:28:54 +0100 Subject: Add URL parsing utility. --- src/libutil/http.h | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'src/libutil/http.h') diff --git a/src/libutil/http.h b/src/libutil/http.h index eefadee18..c6fcf0b83 100644 --- a/src/libutil/http.h +++ b/src/libutil/http.h @@ -53,6 +53,8 @@ struct rspamd_http_header { */ struct rspamd_http_message { GString *url; + GString *host; + unsigned port; GString *status; struct rspamd_http_header *headers; GString *body; @@ -211,12 +213,19 @@ rspamd_http_connection_unref (struct rspamd_http_connection *conn) void rspamd_http_connection_reset (struct rspamd_http_connection *conn); /** - * Create new HTTP reply - * @param code code to pass - * @return new reply object + * Create new HTTP message + * @param type request or response + * @return new http message */ struct rspamd_http_message * rspamd_http_new_message (enum http_parser_type type); +/** + * Create HTTP message from URL + * @param url + * @return new message or NULL + */ +struct rspamd_http_message* rspamd_http_message_from_url (const gchar *url); + /** * Append a header to reply * @param rep -- cgit v1.2.3