diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-07-27 12:57:08 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-07-27 12:57:08 +0200 |
commit | a4901950324eb47ef5ce09264170281413d4218c (patch) | |
tree | 1a371c95401375c91d643e1f498f79d3354b3ba9 /src/core/wee-network.h | |
parent | 50ab62b75d50f28c90d9eea1f786d90aa20cdfe1 (diff) | |
download | weechat-a4901950324eb47ef5ce09264170281413d4218c.zip |
core: add secured data with optional encryption in file sec.conf
Diffstat (limited to 'src/core/wee-network.h')
-rw-r--r-- | src/core/wee-network.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/wee-network.h b/src/core/wee-network.h index e421db020..10294f2cb 100644 --- a/src/core/wee-network.h +++ b/src/core/wee-network.h @@ -40,10 +40,11 @@ struct t_network_socks5 /* auth(user/pass) (2), ... */ }; -extern int network_init_ok; +extern int network_init_gnutls_ok; +extern void network_init_gcrypt (); extern void network_set_gnutls_ca_file (); -extern void network_init (); +extern void network_init_gnutls (); extern void network_end (); extern int network_pass_proxy (const char *proxy, int sock, const char *address, int port); |