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.
17 lines
723 B
17 lines
723 B
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include "pools.h"
|
|
#include "params.h"
|
|
|
|
bool AppendHostlistItem(hostlist_pool **hostlist, char *s);
|
|
bool AppendHostList(hostlist_pool **hostlist, const char *filename);
|
|
bool LoadAllHostLists();
|
|
bool NonEmptyHostlist(hostlist_pool **hostlist);
|
|
// return : true = apply fooling, false = do not apply
|
|
bool HostlistCheck(const struct desync_profile *dp,const char *host, bool *excluded, bool bSkipReloadCheck);
|
|
struct hostlist_file *RegisterHostlist(struct desync_profile *dp, bool bExclude, const char *filename);
|
|
bool HostlistsReloadCheckForProfile(const struct desync_profile *dp);
|
|
void HostlistsDebug();
|
|
|
|
#define ResetAllHostlistsModTime() hostlist_files_reset_modtime(¶ms.hostlists)
|
|
|