summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-08-31 01:05:00 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-08-31 01:05:00 +0000
commit29237b699f47488962133b54b0b3d1085f3c068d (patch)
tree40930c0f2750344f67fecd2238fd203a8cf4be6b /include
parentdc13e23883f2640de3335b679b38a8bf483b03a5 (diff)
Save 4 bytes (assuming sizeof(ptr) == 2) per user record, storing unneeded pointers (self managed class) that nothing was ever done with.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10359 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/users.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/users.h b/include/users.h
index ac06f75f5..59cd6cc6f 100644
--- a/include/users.h
+++ b/include/users.h
@@ -472,19 +472,6 @@ class CoreExport User : public connection
*/
ConnectClass *MyClass;
- /** Resolvers for looking up this users IP address
- * This will occur if and when res_reverse completes.
- * When this class completes its lookup, User::dns_done
- * will be set from false to true.
- */
- UserResolver* res_forward;
-
- /** Resolvers for looking up this users hostname
- * This is instantiated by User::StartDNSLookup(),
- * and on success, instantiates User::res_reverse.
- */
- UserResolver* res_reverse;
-
/** User visibility state, see definition of VisData.
*/
VisData* Visibility;