mirror of
https://github.com/matrix-construct/construct
synced 2024-11-19 16:30:52 +01:00
Avoid empty strings in various notices about rejected server connections.
These come from the name field which is empty for unknown connections attempting to become a server. Instead, put [@255.255.255.255] just like ratbox3 does.
This commit is contained in:
parent
7d4287591f
commit
b1ace057a7
1 changed files with 5 additions and 5 deletions
|
@ -119,7 +119,7 @@ mr_server(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"Unauthorised server connection attempt from %s: "
|
"Unauthorised server connection attempt from %s: "
|
||||||
"No entry for servername %s",
|
"No entry for servername %s",
|
||||||
client_p->name, name);
|
"[@255.255.255.255]", name);
|
||||||
|
|
||||||
ilog(L_SERVER, "Access denied, no connect block for server %s%s",
|
ilog(L_SERVER, "Access denied, no connect block for server %s%s",
|
||||||
EmptyString(client_p->name) ? name : "",
|
EmptyString(client_p->name) ? name : "",
|
||||||
|
@ -135,7 +135,7 @@ mr_server(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
|
||||||
"Unauthorised server connection attempt from %s: "
|
"Unauthorised server connection attempt from %s: "
|
||||||
"Bad password for server %s",
|
"Bad password for server %s",
|
||||||
client_p->name, name);
|
"[@255.255.255.255]", name);
|
||||||
|
|
||||||
ilog(L_SERVER, "Access denied, invalid password for server %s%s",
|
ilog(L_SERVER, "Access denied, invalid password for server %s%s",
|
||||||
EmptyString(client_p->name) ? name : "",
|
EmptyString(client_p->name) ? name : "",
|
||||||
|
@ -150,7 +150,7 @@ mr_server(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"Unauthorised server connection attempt from %s: "
|
"Unauthorised server connection attempt from %s: "
|
||||||
"Invalid host for server %s",
|
"Invalid host for server %s",
|
||||||
client_p->name, name);
|
"[@255.255.255.255]", name);
|
||||||
|
|
||||||
ilog(L_SERVER, "Access denied, invalid host for server %s%s",
|
ilog(L_SERVER, "Access denied, invalid host for server %s%s",
|
||||||
EmptyString(client_p->name) ? name : "",
|
EmptyString(client_p->name) ? name : "",
|
||||||
|
@ -165,7 +165,7 @@ mr_server(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
case -4:
|
case -4:
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"Invalid servername %s from %s",
|
"Invalid servername %s from %s",
|
||||||
name, client_p->name);
|
name, "[@255.255.255.255]");
|
||||||
ilog(L_SERVER, "Access denied, invalid servername from %s",
|
ilog(L_SERVER, "Access denied, invalid servername from %s",
|
||||||
log_client_name(client_p, SHOW_IP));
|
log_client_name(client_p, SHOW_IP));
|
||||||
|
|
||||||
|
@ -208,7 +208,7 @@ mr_server(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
*/
|
*/
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"Attempt to re-introduce server %s from %s",
|
"Attempt to re-introduce server %s from %s",
|
||||||
name, client_p->name);
|
name, "[@255.255.255.255]");
|
||||||
ilog(L_SERVER, "Attempt to re-introduce server %s from %s",
|
ilog(L_SERVER, "Attempt to re-introduce server %s from %s",
|
||||||
name, log_client_name(client_p, SHOW_IP));
|
name, log_client_name(client_p, SHOW_IP));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue