freebsd-dev/sbin/ipf/libipf/load_url.c
Cy Schubert 44bc301921 ipfilter userland: Style(9) requires a space after return
Reported by:    jrtc27
Fixes:          2582ae5740
MFC after:      1 month
2022-01-03 19:37:25 -08:00

32 lines
544 B
C

/*
* Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id: load_url.c,v 1.3.2.2 2012/07/22 08:04:24 darren_r 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);
}