From 8e796652480528f5ae2c48eabdeb33a6b8d3a830 Mon Sep 17 00:00:00 2001 From: Rob Kendrick Date: Wed, 5 Mar 2008 14:21:29 +0000 Subject: Initial attempt at implementing data: URLs. Needs cleaning and verifying that I'm using the fetcher API correctly. Appears to work, though. svn path=/trunk/netsurf/; revision=3882 --- content/fetch.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'content/fetch.c') diff --git a/content/fetch.c b/content/fetch.c index 661b7fa9b..a7ce54c67 100644 --- a/content/fetch.c +++ b/content/fetch.c @@ -44,6 +44,7 @@ #endif #include "content/fetch.h" #include "content/fetchers/fetch_curl.h" +#include "content/fetchers/fetch_data.h" #include "content/urldb.h" #include "desktop/netsurf.h" #include "desktop/options.h" @@ -113,6 +114,7 @@ static bool fetch_dispatch_job(struct fetch *fetch); void fetch_init(void) { fetch_curl_register(); + fetch_data_register(); fetch_active = false; } -- cgit v1.2.3