aboutsummaryrefslogtreecommitdiffstats
path: root/account.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-04-02 16:22:57 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-04-02 16:22:57 +0200
commit85d7b857fb8ca8e3c03d4abb3368a0966760630c (patch)
treea16163e557bcae3af41bde7d2d771d64ca248a97 /account.h
parent875ad4201402b1a8f80ba22a6cdcdb152c6e5510 (diff)
parentdd345753c1742905c9f81aa71d8b09109fbc5456 (diff)
Merge trunk.
Diffstat (limited to 'account.h')
-rw-r--r--account.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/account.h b/account.h
index 37cd8814..a81ca928 100644
--- a/account.h
+++ b/account.h
@@ -33,10 +33,14 @@ typedef struct account
char *pass;
char *server;
+ int auto_connect;
int reconnect;
+ set_t *set;
+ GHashTable *nicks;
+
struct irc *irc;
- struct gaim_connection *gc;
+ struct im_connection *ic;
struct account *next;
} account_t;
@@ -46,4 +50,10 @@ void account_del( irc_t *irc, account_t *acc );
void account_on( irc_t *irc, account_t *a );
void account_off( irc_t *irc, account_t *a );
+char *set_eval_account( set_t *set, char *value );
+
+#define ACC_SET_NOSAVE 1
+#define ACC_SET_OFFLINE_ONLY 2
+#define ACC_SET_ONLINE_ONLY 4
+
#endif