zapret/nfq/hostlist.h

14 lines
498 B
C
Raw Permalink Normal View History

2021-03-04 16:30:38 +05:00
#pragma once
#include <stdbool.h>
2023-10-26 17:12:32 +05:00
#include "pools.h"
2024-09-17 21:57:21 +05:00
#include "params.h"
2021-03-04 16:30:38 +05:00
bool AppendHostList(strpool **hostlist, char *filename);
bool LoadHostLists(strpool **hostlist, struct str_list_head *file_list);
bool LoadIncludeHostLists();
bool LoadExcludeHostLists();
2023-10-26 17:12:32 +05:00
bool NonEmptyHostlist(strpool **hostlist);
bool SearchHostList(strpool *hostlist, const char *host);
// return : true = apply fooling, false = do not apply
2024-09-17 21:57:21 +05:00
bool HostlistCheck(struct desync_profile *dp,const char *host, bool *excluded);