aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/irc.h b/irc.h
index 0650245a..a865bde3 100644
--- a/irc.h
+++ b/irc.h
@@ -37,6 +37,7 @@
#define CMODES "nt"
#define CMODE "t"
#define UMODE "s"
+#define CTYPES "&#"
typedef enum
{
@@ -47,11 +48,6 @@ typedef enum
USTATUS_SHUTDOWN = 8
} irc_status_t;
-typedef struct channel
-{
- char *name;
-} channel_t;
-
typedef struct irc
{
int fd;
@@ -87,6 +83,7 @@ typedef struct irc
struct query *queries;
struct account *accounts;
GSList *file_transfers;
+ struct chat *chatrooms;
struct __USER *users;
GHashTable *userhash;
@@ -100,7 +97,6 @@ typedef struct irc
} irc_t;
#include "user.h"
-// #include "nick.h"
extern GSList *irc_connection_list;