1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 04:46:17 +00:00

Generate WALLOPS message on operator-generated SQUIT

This commit is contained in:
Alexander Barton 2009-05-19 23:06:28 +02:00
parent 294320ed62
commit 881b9af251

View File

@ -332,6 +332,10 @@ IRC_SQUIT(CLIENT * Client, REQUEST * Req)
/* We are directly connected to the target server, so we /* We are directly connected to the target server, so we
* have to tear down the connection and to inform all the * have to tear down the connection and to inform all the
* other remaining servers in the network */ * other remaining servers in the network */
IRC_SendWallops(Client_ThisServer(), Client_ThisServer(),
"Received SQUIT %s from %s: %s",
Req->argv[0], Client_ID(from),
Req->argv[1][0] ? Req->argv[1] : "-");
Conn_Close(con, NULL, msg, true); Conn_Close(con, NULL, msg, true);
if (con == Client_Conn(Client)) if (con == Client_Conn(Client))
return DISCONNECTED; return DISCONNECTED;