summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-25 14:01:33 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-25 14:01:33 +0000
commit5e6e38272250d2862e0eec59ad9ad6710c420e5f (patch)
treec9cb3f7e750fefe9114d2ffc62f37189382e3a48 /include
parent4299e3190c0d72d6723d9db77cc49842dfb9f5a9 (diff)
Added comments and fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@726 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/xline.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/xline.h b/include/xline.h
index 15de2113d..fdd5fb5d1 100644
--- a/include/xline.h
+++ b/include/xline.h
@@ -72,6 +72,9 @@ class ZLine : public XLine
* May contain wildcards.
*/
char ipaddr[MAXBUF];
+ /** Set if this is a global Z:line
+ * (e.g. it came from another server)
+ */
bool is_global;
};
@@ -84,6 +87,9 @@ class QLine : public XLine
* May contain wildcards.
*/
char nick[MAXBUF];
+ /** Set if this is a global Z:line
+ * (e.g. it came from another server)
+ */
bool is_global;
};