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.
14 lines
504 B
14 lines
504 B
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include "pools.h"
|
|
#include "params.h"
|
|
|
|
bool AppendHostList(strpool **hostlist, const char *filename);
|
|
bool LoadHostLists(strpool **hostlist, struct str_list_head *file_list);
|
|
bool LoadIncludeHostLists();
|
|
bool LoadExcludeHostLists();
|
|
bool NonEmptyHostlist(strpool **hostlist);
|
|
bool SearchHostList(strpool *hostlist, const char *host);
|
|
// return : true = apply fooling, false = do not apply
|
|
bool HostlistCheck(struct desync_profile *dp,const char *host, bool *excluded);
|