added SSL backend for IOMultiplexer
[TransparentIRC.git] / src / IRCClient.h
1 /* IRCClient.h - TransparentIRC 0.1
2  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17
18 #ifndef _IRCClient_h
19 #define _IRCClient_h
20 #include "overall.h"
21
22 struct IODescriptor;
23 struct UserSession;
24 struct UserLogin;
25
26 struct IRCChannelMember {
27     char *nick;
28     int modes;
29     
30     struct IRCChannelMember *next, *prev;
31 };
32
33 struct IRCChannel {
34     char *name;
35     struct IRCChannelMember *userlist;
36     int synchronizing_userlist : 1;
37     
38     struct IRCChannel *next, *prev;
39 };
40
41 struct IRCUser {
42     char *nick;
43     char *ident;
44     char *host;
45 };
46
47 struct IRCClient {
48     struct IODescriptor *iofd;
49     struct UserSession *session;
50     
51     int auth_confirmed : 1;
52     int fully_connected : 1;
53     struct IRCLine *recover_header;
54     struct IRCChannel *channel;
55     
56     char *network_prefixes;
57     char *network_prefixes_char;
58     char *network_chanmodes;
59     char *network_chantypes;
60     
61     struct IRCClient *next, *prev;
62 };
63
64 struct IRCLine {
65     char *line;
66     struct IRCLine *next;
67 };
68
69 void ircclient_initialize(struct UserSession *session, struct UserLogin *login);
70 void ircclient_close(struct IRCClient *client);
71 void ircclient_send(struct IRCClient *client, char *line);
72 void ircclient_recover_session(struct UserSession *session);
73
74 #endif