mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 23:52:22 +02:00
added /SET proxy_password
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1414 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
27d7eaa3bf
commit
ae6d2014e5
5 changed files with 8 additions and 1 deletions
|
|
@ -131,6 +131,7 @@ static void server_setup_fill(SERVER_CONNECT_REC *conn,
|
|||
conn->proxy = g_strdup(settings_get_str("proxy_address"));
|
||||
conn->proxy_port = settings_get_int("proxy_port");
|
||||
conn->proxy_string = g_strdup(settings_get_str("proxy_string"));
|
||||
conn->proxy_password = g_strdup(settings_get_str("proxy_password"));
|
||||
}
|
||||
|
||||
/* source IP */
|
||||
|
|
@ -502,6 +503,7 @@ void servers_setup_init(void)
|
|||
settings_add_str("proxy", "proxy_address", "");
|
||||
settings_add_int("proxy", "proxy_port", 6667);
|
||||
settings_add_str("proxy", "proxy_string", "CONNECT %s %d");
|
||||
settings_add_str("proxy", "proxy_password", "");
|
||||
|
||||
setupservers = NULL;
|
||||
source_host_ip4 = source_host_ip6 = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue