diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-10 17:21:19 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-10 17:21:19 +0000 |
commit | 3b9d311e5c104a8aed39fa402228f649c5c4dd7c (patch) | |
tree | 0c09e60b998cc1a97c58bf719643352a49783b40 | |
parent | 531fb6fed282b6d32d94d1e99ffdd1599dde2713 (diff) |
Fixed comments for cached host fields in User; 3/4 of these were completely incorrect.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10494 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/users.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/users.h b/include/users.h index c4c85fb0f..1eb48c2f0 100644 --- a/include/users.h +++ b/include/users.h @@ -427,15 +427,15 @@ class CoreExport User : public EventHandler */ InvitedList invites; - /** Cached nick!ident@host value using the real hostname + /** Cached nick!ident@dhost value using the displayed hostname */ std::string cached_fullhost; - /** Cached nick!ident@ip value using the real IP address + /** Cached ident@ip value using the real IP address */ std::string cached_hostip; - /** Cached nick!ident@host value using the masked hostname + /** Cached ident@realhost value using the real hostname */ std::string cached_makehost; |