blob: 38f9793a592576498a6252cb24ccc209dc189573 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef XML_H
#define XML_H
bool p_load_proxy_list(std::list<config::p_proxy_entry> *list, config *cfg, const char* path = NULL);
bool p_load_proxy_chains(std::list<config::p_proxy_chain> *list, config *cfg, const char *path = NULL);
bool p_save_proxy_list(std::list<config::p_proxy_entry> *list, config *cfg, const char *path = NULL);
bool p_sset_default_rule(config::p_proxy_entry *entry, config *cfg, const char *path = NULL);
bool p_save_proxy_chains(std::list<config::p_proxy_chain> *list, config *cfg, const char *path = NULL);
#endif
|