zapret/tpws/hostlist.h

15 lines
567 B
C
Raw Permalink Normal View History

2024-10-28 11:32:24 +05:00
#pragma once
#include <stdbool.h>
#include "pools.h"
#include "params.h"
bool AppendHostList(strpool **hostlist, const char *filename);
bool LoadAllHostLists();
2024-10-28 11:32:24 +05:00
bool NonEmptyHostlist(strpool **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();