[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
| 4 | * Copyright 2002-2004 Wilmer van der Gaast and others * |
---|
| 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* Account management functions */ |
---|
| 8 | |
---|
| 9 | /* |
---|
| 10 | This program is free software; you can redistribute it and/or modify |
---|
| 11 | it under the terms of the GNU General Public License as published by |
---|
| 12 | the Free Software Foundation; either version 2 of the License, or |
---|
| 13 | (at your option) any later version. |
---|
| 14 | |
---|
| 15 | This program is distributed in the hope that it will be useful, |
---|
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | GNU General Public License for more details. |
---|
| 19 | |
---|
| 20 | You should have received a copy of the GNU General Public License with |
---|
| 21 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
| 22 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
| 23 | Suite 330, Boston, MA 02111-1307 USA |
---|
| 24 | */ |
---|
| 25 | |
---|
| 26 | #ifndef _ACCOUNT_H |
---|
| 27 | #define _ACCOUNT_H |
---|
| 28 | |
---|
| 29 | typedef struct account |
---|
| 30 | { |
---|
[7b23afd] | 31 | struct prpl *prpl; |
---|
[b7d3cc34] | 32 | char *user; |
---|
| 33 | char *pass; |
---|
| 34 | char *server; |
---|
[40e6dac] | 35 | char *tag; |
---|
[b7d3cc34] | 36 | |
---|
[2b14eef] | 37 | int auto_connect; |
---|
[280e655] | 38 | int auto_reconnect_delay; |
---|
[b7d3cc34] | 39 | int reconnect; |
---|
[d1ad6f0] | 40 | int flags; |
---|
[b7d3cc34] | 41 | |
---|
[5100caa] | 42 | set_t *set; |
---|
[5b52a48] | 43 | GHashTable *nicks; |
---|
[5100caa] | 44 | |
---|
[81e04e1] | 45 | struct bee *bee; |
---|
[0da65d5] | 46 | struct im_connection *ic; |
---|
[b7d3cc34] | 47 | struct account *next; |
---|
| 48 | } account_t; |
---|
| 49 | |
---|
[81e04e1] | 50 | account_t *account_add( bee_t *bee, struct prpl *prpl, char *user, char *pass ); |
---|
[40e6dac] | 51 | account_t *account_get( bee_t *bee, const char *id ); |
---|
| 52 | account_t *account_by_tag( bee_t *bee, const char *tag ); |
---|
[81e04e1] | 53 | void account_del( bee_t *bee, account_t *acc ); |
---|
| 54 | void account_on( bee_t *bee, account_t *a ); |
---|
| 55 | void account_off( bee_t *bee, account_t *a ); |
---|
[b7d3cc34] | 56 | |
---|
[96863f6] | 57 | char *set_eval_account( set_t *set, char *value ); |
---|
[280e655] | 58 | char *set_eval_account_reconnect_delay( set_t *set, char *value ); |
---|
| 59 | int account_reconnect_delay( account_t *a ); |
---|
[96863f6] | 60 | |
---|
[d1ad6f0] | 61 | typedef enum |
---|
| 62 | { |
---|
| 63 | ACC_SET_NOSAVE = 0x01, /* Don't save this setting (i.e. stored elsewhere). */ |
---|
| 64 | ACC_SET_OFFLINE_ONLY = 0x02, /* Allow changes only if the acct is offline. */ |
---|
| 65 | ACC_SET_ONLINE_ONLY = 0x04, /* Allow changes only if the acct is online. */ |
---|
| 66 | } account_set_flag_t; |
---|
| 67 | |
---|
| 68 | typedef enum |
---|
| 69 | { |
---|
| 70 | ACC_FLAG_AWAY_MESSAGE = 0x01, /* Supports away messages instead of just states. */ |
---|
| 71 | ACC_FLAG_STATUS_MESSAGE = 0x02, /* Supports status messages (without being away). */ |
---|
| 72 | } account_flag_t; |
---|
[5100caa] | 73 | |
---|
[b7d3cc34] | 74 | #endif |
---|