diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/xline.h | 6 |
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; }; |