1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Added -noproxy option to /CONNECT and /SERVER.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2322 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-01-19 23:21:24 +00:00 committed by cras
parent 77c658bf80
commit c20cc9bb1f

View File

@ -84,7 +84,10 @@ static SERVER_CONNECT_REC *get_server_connect(const char *data, int *plus_addr)
conn->family = AF_INET;
if (g_hash_table_lookup(optlist, "!") != NULL)
conn->no_autojoin_channels = TRUE;
conn->no_autojoin_channels = TRUE;
if (g_hash_table_lookup(optlist, "noproxy") != NULL)
g_free_and_null(conn->proxy);
host = g_hash_table_lookup(optlist, "host");
if (host != NULL && *host != '\0') {
@ -397,7 +400,7 @@ void chat_commands_init(void)
signal_add("default command server", (SIGNAL_FUNC) sig_default_command_server);
command_set_options("connect", "4 6 !! +host");
command_set_options("connect", "4 6 !! +host noproxy");
command_set_options("join", "invite");
}