2024-10-28 11:32:24 +05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "pools.h"
|
|
|
|
#include "params.h"
|
|
|
|
|
2024-10-13 19:26:25 +05:00
|
|
|
bool AppendHostList(strpool **hostlist, const char *filename);
|
2024-10-29 17:08:05 +05:00
|
|
|
bool LoadAllHostLists();
|
2024-10-28 11:32:24 +05:00
|
|
|
bool NonEmptyHostlist(strpool **hostlist);
|
|
|
|
// return : true = apply fooling, false = do not apply
|
2024-10-29 17:08:05 +05:00
|
|
|
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();
|