4 * Copyright (C) 2006 by Darren Reed.
6 * See the IPFILTER.LICENCE file for details on licencing.
8 * Id: load_url.c,v 1.1.2.1 2006/08/25 21:13:04 darrenr Exp
16 alist_t
*hosts
= NULL
;
18 if (strncmp(url
, "file://", 7) == 0) {
23 hosts
= load_file(url
);
25 } else if (*url
== '/' || *url
== '.') {
26 hosts
= load_file(url
);
28 } else if (strncmp(url
, "http://", 7) == 0) {
29 hosts
= load_http(url
);