Fix a problem with multiline responses

Do not clear the whole table every time a response is received.
This commit is contained in:
LemonBoy 2017-10-30 17:41:16 +01:00
commit fed791ed91
2 changed files with 7 additions and 2 deletions

View file

@ -68,6 +68,7 @@ struct _IRC_SERVER_REC {
unsigned int motd_got:1; /* We've received MOTD */
unsigned int isupport_sent:1; /* Server has sent us an isupport reply */
unsigned int cap_complete:1; /* We've done the initial CAP negotiation */
unsigned int cap_in_multiline:1; /* We're waiting for the multiline response to end */
unsigned int sasl_success:1; /* Did we authenticate successfully ? */
int max_kicks_in_cmd; /* max. number of people to kick with one /KICK command */