mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
IRC Network specific settings: nick, username, realname,
max. kicks/modes/msgs per command. Keeps track of "wanted nick", ie. the nick you specified in the setup or to /server or /nick. When reconnecting to server it always tries the wanted nick before falling back to alternate nicks. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@98 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
da86294a25
commit
b36b88af1b
@ -37,6 +37,16 @@ typedef struct
|
||||
}
|
||||
SETUP_SERVER_REC;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
gchar *name;
|
||||
gchar *nick;
|
||||
gchar *username;
|
||||
gchar *realname;
|
||||
gint max_kicks, max_msgs, max_modes; /* max. number of kicks/msgs/mode changes per command */
|
||||
}
|
||||
IRCNET_REC;
|
||||
|
||||
extern GList *setupservers; /* list of local servers */
|
||||
extern GList *ircnets; /* list of available ircnets */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user