mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
Moved autoconnects and command line parameter parsing from irc to core.
Added not_initialized parameter to chat protocols that are created using chat_protocol_get_unknown(). /CONNECT doesn't crash now with non-initialized protocols but instead complains about them. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1248 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
42634d83bc
commit
1117638b52
10 changed files with 122 additions and 91 deletions
|
|
@ -21,13 +21,10 @@
|
|||
#include "module.h"
|
||||
#include "module-formats.h"
|
||||
#include "signals.h"
|
||||
#include "args.h"
|
||||
#include "misc.h"
|
||||
#include "lib-config/iconfig.h"
|
||||
#include "settings.h"
|
||||
|
||||
#include "servers-setup.h"
|
||||
|
||||
#include "themes.h"
|
||||
|
||||
void fe_irc_modules_init(void);
|
||||
|
|
@ -69,33 +66,8 @@ void fe_netsplit_deinit(void);
|
|||
void fe_netjoin_init(void);
|
||||
void fe_netjoin_deinit(void);
|
||||
|
||||
static char *autocon_server;
|
||||
static char *autocon_password;
|
||||
static int autocon_port;
|
||||
static int no_autoconnect;
|
||||
static char *cmdline_nick;
|
||||
static char *cmdline_hostname;
|
||||
|
||||
void fe_common_irc_init(void)
|
||||
{
|
||||
static struct poptOption options[] = {
|
||||
{ "connect", 'c', POPT_ARG_STRING, &autocon_server, 0, N_("Automatically connect to server/ircnet"), N_("SERVER") },
|
||||
{ "password", 'w', POPT_ARG_STRING, &autocon_password, 0, N_("Autoconnect password"), N_("SERVER") },
|
||||
{ "port", 'p', POPT_ARG_INT, &autocon_port, 0, N_("Autoconnect port"), N_("PORT") },
|
||||
{ "noconnect", '!', POPT_ARG_NONE, &no_autoconnect, 0, N_("Disable autoconnecting"), NULL },
|
||||
{ "nick", 'n', POPT_ARG_STRING, &cmdline_nick, 0, N_("Specify nick to use"), NULL },
|
||||
{ "hostname", 'h', POPT_ARG_STRING, &cmdline_hostname, 0, N_("Specify host name to use"), NULL },
|
||||
{ NULL, '\0', 0, NULL }
|
||||
};
|
||||
|
||||
autocon_server = NULL;
|
||||
autocon_password = NULL;
|
||||
autocon_port = 6667;
|
||||
no_autoconnect = FALSE;
|
||||
cmdline_nick = NULL;
|
||||
cmdline_hostname = NULL;
|
||||
args_register(options);
|
||||
|
||||
settings_add_bool("lookandfeel", "show_away_once", TRUE);
|
||||
|
||||
theme_register(fecommon_irc_formats);
|
||||
|
|
@ -136,51 +108,3 @@ void fe_common_irc_deinit(void)
|
|||
|
||||
theme_unregister();
|
||||
}
|
||||
|
||||
void fe_common_irc_finish_init(void)
|
||||
{
|
||||
GSList *tmp, *ircnets;
|
||||
char *str;
|
||||
|
||||
if (cmdline_nick != NULL) {
|
||||
/* override nick found from setup */
|
||||
settings_set_str("nick", cmdline_nick);
|
||||
}
|
||||
|
||||
if (cmdline_hostname != NULL) {
|
||||
/* override host name found from setup */
|
||||
settings_set_str("hostname", cmdline_hostname);
|
||||
}
|
||||
|
||||
if (autocon_server != NULL) {
|
||||
/* connect to specified server */
|
||||
str = g_strdup_printf(autocon_password == NULL ? "%s %d" : "%s %d %s",
|
||||
autocon_server, autocon_port, autocon_password);
|
||||
signal_emit("command connect", 1, str);
|
||||
g_free(str);
|
||||
return;
|
||||
}
|
||||
|
||||
if (no_autoconnect) {
|
||||
/* don't autoconnect */
|
||||
return;
|
||||
}
|
||||
|
||||
/* connect to autoconnect servers */
|
||||
ircnets = NULL;
|
||||
for (tmp = setupservers; tmp != NULL; tmp = tmp->next) {
|
||||
SERVER_SETUP_REC *rec = tmp->data;
|
||||
|
||||
if (rec->autoconnect && (rec->chatnet == NULL || *rec->chatnet == '\0' ||
|
||||
gslist_find_icase_string(ircnets, rec->chatnet) == NULL)) {
|
||||
if (rec->chatnet != NULL && *rec->chatnet != '\0')
|
||||
ircnets = g_slist_append(ircnets, rec->chatnet);
|
||||
|
||||
str = g_strdup_printf("%s %d", rec->address, rec->port);
|
||||
signal_emit("command connect", 1, str);
|
||||
g_free(str);
|
||||
}
|
||||
}
|
||||
|
||||
g_slist_free(ircnets);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,5 @@
|
|||
|
||||
void fe_common_irc_init(void);
|
||||
void fe_common_irc_deinit(void);
|
||||
void fe_common_irc_finish_init(void);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue