mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
Add the IP address to userlog, as in ratbox3.
This commit is contained in:
parent
aa7698933a
commit
9641f15652
1 changed files with 2 additions and 1 deletions
|
@ -1484,10 +1484,11 @@ exit_local_client(struct Client *client_p, struct Client *source_p, struct Clien
|
|||
|
||||
on_for = rb_current_time() - source_p->localClient->firsttime;
|
||||
|
||||
ilog(L_USER, "%s (%3lu:%02lu:%02lu): %s!%s@%s %d/%d",
|
||||
ilog(L_USER, "%s (%3lu:%02lu:%02lu): %s!%s@%s %s %d/%d",
|
||||
rb_ctime(rb_current_time(), tbuf, sizeof(tbuf)), on_for / 3600,
|
||||
(on_for % 3600) / 60, on_for % 60,
|
||||
source_p->name, source_p->username, source_p->host,
|
||||
source_p->sockhost,
|
||||
source_p->localClient->sendK, source_p->localClient->receiveK);
|
||||
|
||||
sendto_one(source_p, "ERROR :Closing Link: %s (%s)", source_p->host, comment);
|
||||
|
|
Loading…
Reference in a new issue