mirror of https://github.com/bol-van/zapret/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
344 B
11 lines
344 B
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <arpa/inet.h>
|
|
#include "params.h"
|
|
#include "pools.h"
|
|
|
|
bool LoadIncludeIpsets();
|
|
bool LoadExcludeIpsets();
|
|
bool SearchIpset(const ipset *ips, const struct in_addr *ipv4, const struct in6_addr *ipv6);
|
|
bool IpsetCheck(struct desync_profile *dp, const struct in_addr *ipv4, const struct in6_addr *ipv6);
|
|
|