added channel rejoin faker (session recover)
[TransparentIRC.git] / src / IRCClient.h
index a6b2f4c5a2a584e4f7a36969965a982b4241be5a..707400b968d261deef6a07749cfd3e9d8d91f32a 100644 (file)
@@ -23,18 +23,38 @@ struct IODescriptor;
 struct UserSession;
 struct UserLogin;
 
+struct IRCChannel {
+    char *name;
+    
+    struct IRCChannel *next, *prev;
+};
+
+struct IRCUser {
+    char *nick;
+    char *ident;
+    char *host;
+};
+
 struct IRCClient {
     struct IODescriptor *iofd;
-    
     struct UserSession *session;
     
     int auth_confirmed : 1;
+    int fully_connected : 1;
+    struct IRCLine *recover_header;
+    struct IRCChannel *channel;
     
     struct IRCClient *next, *prev;
 };
 
+struct IRCLine {
+    char *line;
+    struct IRCLine *next;
+};
+
 void ircclient_initialize(struct UserSession *session, struct UserLogin *login);
 void ircclient_close(struct IRCClient *client);
 void ircclient_send(struct IRCClient *client, char *line);
+void ircclient_recover_session(struct UserSession *session);
 
 #endif