mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 08:02:13 +02:00
Implement support for IRCv3.1 CAP negotiation
This commit is contained in:
parent
c122a2a226
commit
2d7030a844
9 changed files with 238 additions and 1 deletions
|
|
@ -69,6 +69,13 @@ struct _IRC_SERVER_REC {
|
|||
int max_whois_in_cmd; /* max. number of nicks in one /WHOIS command */
|
||||
int max_msgs_in_cmd; /* max. number of targets in one /MSG */
|
||||
|
||||
GSList *cap_supported; /* A list of caps supported by the server */
|
||||
GSList *cap_active; /* A list of caps active for this session */
|
||||
GSList *cap_queue; /* A list of caps to request on connection */
|
||||
int cap_complete:1; /* We've done the initial CAP negotiation */
|
||||
|
||||
guint sasl_timeout; /* Holds the source id of the running timeout */
|
||||
|
||||
/* Command sending queue */
|
||||
int cmdcount; /* number of commands in `cmdqueue'. Can be more than
|
||||
there actually is, to make flood control remember
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue