connregex syntax
rage <[email protected]>
| Newsgroups | gmane.network.irc.bopm |
|---|---|
| Message-ID | <20050414070718.GA27068@monolith> |
Also.. as well as the connregex syntax I have taken this from the
s_user.c file of our ircd:
sendto_connectops(NULL, &me, "%s (%s@%s) has just connected to the
server.",
sptr->name, sptr->user->username,
sptr->sockhost);
Took that portion of the code and translated into:
sendto_connectops(NULL, &me, "%s (%s@%s) %s has just connected to the
server.",
sptr->name, sptr->user->username,
sptr->sockhost, sptr->ip);
or maybe it is sptr->hostip
either way.. could a change like this take place and the ircd be
recompiled to display IP addresses in connection notice?
This is the actual log from a connection when i did bopm --dd :
[Apr 14 07:06:20 2005] IRC READ -> :monolith.oh.us.gammaforce.org NOTICE
GammaScan :*** [C] NOTICE: cypress_ ([email protected]) has just
connected to the server.
so i know it is seeing the connections.. just not scanning then.
and to retrieve IP.. which is NOT displayed via connection notice.. but
is retrieved.