1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 02:33:12 +02:00

relay: add TLS connection to remote, add remote option "tls_verify"

This commit is contained in:
Sébastien Helleu
2024-04-14 19:00:05 +02:00
parent a4236be509
commit 984fdb2b58
20 changed files with 1161 additions and 52 deletions
@@ -54,9 +54,9 @@ TEST_GROUP(RelayRemoteNetworkWithRemote)
/* create two relay remotes */
ptr_relay_remote = relay_remote_new ("remote", "http://localhost:9000",
NULL, "secret", "secretbase32");
NULL, "on", "secret", "secretbase32");
ptr_relay_remote2 = relay_remote_new ("remote2", "https://localhost:9001/",
"my_proxy", "secret", "secretbase32");
"my_proxy", "off", "secret", "secretbase32");
}
void teardown ()