Current Path : /compat/linux/proc/self/root/usr/src/contrib/ipfilter/lib/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //compat/linux/proc/self/root/usr/src/contrib/ipfilter/lib/load_url.c |
/* * Copyright (C) 2006 by Darren Reed. * * See the IPFILTER.LICENCE file for details on licencing. * * $Id: load_url.c,v 1.1.2.1 2006/08/25 21:13:04 darrenr Exp $ */ #include "ipf.h" alist_t * load_url(char *url) { alist_t *hosts = NULL; if (strncmp(url, "file://", 7) == 0) { /* * file:///etc/passwd * ^------------s */ hosts = load_file(url); } else if (*url == '/' || *url == '.') { hosts = load_file(url); } else if (strncmp(url, "http://", 7) == 0) { hosts = load_http(url); } return hosts; }