diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-29 08:13:49 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-29 08:13:49 +0000 |
commit | fee65af28e1db5cc431bda2dc643952b88461a74 (patch) | |
tree | 651349e4505bdac3acb39284252c231c30b7607e /include | |
parent | cbef292a6c4137bf99544e380b3a650237b2d9a7 (diff) |
Replace the IP (in addition to hostname) for CGIIRC clients; fixes glines and zlines on IPs affecting cgiirc users. Thanks to Saz|Laptop
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10607 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/users.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/users.h b/include/users.h index fdfa4606b..5f066cdd4 100644 --- a/include/users.h +++ b/include/users.h @@ -708,9 +708,10 @@ class CoreExport User : public EventHandler User(InspIRCd* Instance, const std::string &uid = ""); /** Check if the user matches a G or K line, and disconnect them if they do. + * @param doZline True if ZLines should be checked (if IP has changed since initial connect) * Returns true if the user matched a ban, false else. */ - bool CheckLines(); + bool CheckLines(bool doZline = false); /** Returns the full displayed host of the user * This member function returns the hostname of the user as seen by other users |