You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's logic in m_squit that closes the connection if SQUIT is called with no parameters:
/* This is actually protocol error. But, well, closing the link is very proper answer to that... */
This makes sense from a server<>server context, but if an oper accidentally types /squit with no parameters, it disconnects them. We should probably reply with ERR_NEEDMOREPARAMS if it's an oper doing the SQUIT.
The text was updated successfully, but these errors were encountered:
There's logic in
m_squit
that closes the connection ifSQUIT
is called with no parameters:/* This is actually protocol error. But, well, closing the link is very proper answer to that... */
This makes sense from a server<>server context, but if an oper accidentally types /squit with no parameters, it disconnects them. We should probably reply with ERR_NEEDMOREPARAMS if it's an oper doing the SQUIT.
The text was updated successfully, but these errors were encountered: