Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2019-10-04 10:10:53 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-10-04 10:10:53 +0300
commitc3611bdc9c74c605965784bcec9ec2235f4a1a66 (patch)
tree7655bc16dcb56b13f91e21e6dfb2e0fa4ca4af3b /src/remmina_plugin_manager.c
parentdf6b741b57044d48db60dbb751a17bb2c8deca5d (diff)
Adding hidden proxy/socks settings for the RDP plugin
To use it, at the moment, the only way is to add the parameters directly in the remmina files The parameters are proxy_type = http, socks5, no_proxy proxy_username = foo proxy_password = cleartextpassword proxy_hostname = bar.com proxy_port = 80 is the default TODO: Add password encryption (ASAP) UI refactoring to add also these options (in a future MR) Closes #196
Diffstat (limited to 'src/remmina_plugin_manager.c')
-rw-r--r--src/remmina_plugin_manager.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/remmina_plugin_manager.c b/src/remmina_plugin_manager.c
index 05abe3094..a47b9c5c6 100644
--- a/src/remmina_plugin_manager.c
+++ b/src/remmina_plugin_manager.c
@@ -101,6 +101,7 @@ static void init_settings_cache(RemminaPlugin *plugin)
}
/* Some settings are encrypted "by name" */
+ /* g_hash_table_insert(pht, g_strdup("proxy_password"), (gpointer)TRUE); */
g_hash_table_insert(pht, g_strdup("ssh_password"), (gpointer)TRUE);
g_hash_table_insert(pht, g_strdup("ssh_passphrase"), (gpointer)TRUE);