]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/users.h
Removed __single_client_alloc again because gcc devs were smoking crack and removed it
[user/henk/code/inspircd.git] / include / users.h
index 2241a6e28623945ef926934adb5f03222dac4e97..2dda519840bdb52747856ce25d28b9c5bcc30b39 100644 (file)
@@ -308,7 +308,23 @@ class userrec : public connection
         */
        void FlushWriteBuf();
 
+       /** Returns the list of channels this user has been invited to but has not yet joined.
+        */
+       InvitedList* GetInviteList();
 };
 
+/** 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