Show account name in cliconn snotes when SASL is used (#135)
Show account name in cliconn snotes when SASL is used
This commit is contained in:
parent
bb10433ec5
commit
e62ec6f17c
2 changed files with 9 additions and 5 deletions
|
@ -57,10 +57,11 @@ h_gcn_new_remote_user(struct Client *source_p)
|
||||||
if (!HasSentEob(source_p->servptr))
|
if (!HasSentEob(source_p->servptr))
|
||||||
return;
|
return;
|
||||||
sendto_realops_snomask_from(snomask_modes['F'], L_ALL, source_p->servptr,
|
sendto_realops_snomask_from(snomask_modes['F'], L_ALL, source_p->servptr,
|
||||||
"Client connecting: %s (%s@%s) [%s] {%s} [%s]",
|
"Client connecting: %s (%s@%s) [%s] {%s} <%s> [%s]",
|
||||||
source_p->name, source_p->username, source_p->orighost,
|
source_p->name, source_p->username, source_p->orighost,
|
||||||
show_ip(NULL, source_p) ? source_p->sockhost : "255.255.255.255",
|
show_ip(NULL, source_p) ? source_p->sockhost : "255.255.255.255",
|
||||||
"?", source_p->info);
|
"?", *source_p->user->suser ? source_p->user->suser : "*",
|
||||||
|
source_p->info);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
|
@ -613,18 +613,21 @@ register_local_user(struct Client *client_p, struct Client *source_p)
|
||||||
rb_inet_ntop_sock((struct sockaddr *)&source_p->localClient->ip, ipaddr, sizeof(ipaddr));
|
rb_inet_ntop_sock((struct sockaddr *)&source_p->localClient->ip, ipaddr, sizeof(ipaddr));
|
||||||
|
|
||||||
sendto_realops_snomask(SNO_CCONN, L_ALL,
|
sendto_realops_snomask(SNO_CCONN, L_ALL,
|
||||||
"Client connecting: %s (%s@%s) [%s] {%s} [%s]",
|
"Client connecting: %s (%s@%s) [%s] {%s} <%s> [%s]",
|
||||||
source_p->name, source_p->username, source_p->orighost,
|
source_p->name, source_p->username, source_p->orighost,
|
||||||
show_ip(NULL, source_p) ? ipaddr : "255.255.255.255",
|
show_ip(NULL, source_p) ? ipaddr : "255.255.255.255",
|
||||||
get_client_class(source_p), source_p->info);
|
get_client_class(source_p),
|
||||||
|
*source_p->user->suser ? source_p->user->suser : "*",
|
||||||
|
source_p->info);
|
||||||
|
|
||||||
sendto_realops_snomask(SNO_CCONNEXT, L_ALL,
|
sendto_realops_snomask(SNO_CCONNEXT, L_ALL,
|
||||||
"CLICONN %s %s %s %s %s %s 0 %s",
|
"CLICONN %s %s %s %s %s %s 0 %s %s",
|
||||||
source_p->name, source_p->username, source_p->orighost,
|
source_p->name, source_p->username, source_p->orighost,
|
||||||
show_ip(NULL, source_p) ? ipaddr : "255.255.255.255",
|
show_ip(NULL, source_p) ? ipaddr : "255.255.255.255",
|
||||||
get_client_class(source_p),
|
get_client_class(source_p),
|
||||||
/* mirc can sometimes send ips here */
|
/* mirc can sometimes send ips here */
|
||||||
show_ip(NULL, source_p) ? source_p->localClient->fullcaps : "<hidden> <hidden>",
|
show_ip(NULL, source_p) ? source_p->localClient->fullcaps : "<hidden> <hidden>",
|
||||||
|
*source_p->user->suser ? source_p->user->suser : "*",
|
||||||
source_p->info);
|
source_p->info);
|
||||||
|
|
||||||
add_to_hostname_hash(source_p->orighost, source_p);
|
add_to_hostname_hash(source_p->orighost, source_p);
|
||||||
|
|
Loading…
Reference in a new issue