mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-14 18:48:33 +05:00
12 lines
345 B
C
12 lines
345 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <arpa/inet.h>
|
|
#include "params.h"
|
|
#include "pools.h"
|
|
|
|
bool LoadAllIpsets();
|
|
bool IpsetCheck(const struct desync_profile *dp, const struct in_addr *ipv4, const struct in6_addr *ipv6);
|
|
struct ipset_file *RegisterIpset(struct desync_profile *dp, bool bExclude, const char *filename);
|
|
void IpsetsDebug();
|