From 194838af39aa5fc823571afe9d61b2453573a32d Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 12 May 2005 19:09:42 +0000 Subject: Changed the type of struct whowas records are stored in (no need to waste a big heavy userrec) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1369 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/users.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'include/users.h') diff --git a/include/users.h b/include/users.h index 2241a6e28..681f5d4b4 100644 --- a/include/users.h +++ b/include/users.h @@ -310,5 +310,18 @@ class userrec : public connection }; +/** A lightweight userrec used by WHOWAS + */ +class WhoWasUser +{ + public: + char nick[NICKMAX]; + char ident[16]; + char dhost[160]; + char host[160]; + char fullname[128]; + char server[256]; + time_t signon; +}; #endif -- cgit v1.2.3