source: protocols/bee.c @ 0d9d53e

Last change on this file since 0d9d53e was 0d9d53e, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-06-07T00:58:07Z

Fixed "set password" and "set auto_reconnect_delay".

  • Property mode set to 100644
File size: 2.8 KB
RevLine 
[81186cab]1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2010 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/* Some IM-core stuff                                                   */
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#define BITLBEE_CORE
[ebaebfe]27#include "bitlbee.h"
28
[81186cab]29static char *set_eval_away_status( set_t *set, char *value );
30
[ebaebfe]31bee_t *bee_new()
32{
33        bee_t *b = g_new0( bee_t, 1 );
34        set_t *s;
35       
[81186cab]36        s = set_add( &b->set, "away", NULL, set_eval_away_status, b );
[ebaebfe]37        s->flags |= SET_NULL_OK;
38        s = set_add( &b->set, "auto_connect", "true", set_eval_bool, b );
39        s = set_add( &b->set, "auto_reconnect", "true", set_eval_bool, b );
[0d9d53e]40        s = set_add( &b->set, "auto_reconnect_delay", "5*3<900", set_eval_account_reconnect_delay, b );
[ebaebfe]41        s = set_add( &b->set, "debug", "false", set_eval_bool, b );
42        s = set_add( &b->set, "save_on_quit", "true", set_eval_bool, b );
[81186cab]43        s = set_add( &b->set, "status", NULL, set_eval_away_status, b );
[ebaebfe]44        s->flags |= SET_NULL_OK;
45        s = set_add( &b->set, "strip_html", "true", NULL, b );
46       
[aea8b68]47        b->user = g_malloc( 1 );
48       
[ebaebfe]49        return b;
50}
51
52void bee_free( bee_t *b )
53{
[d33679e]54        while( b->accounts )
[ebaebfe]55        {
[d33679e]56                if( b->accounts->ic )
57                        imc_logout( b->accounts->ic, FALSE );
58                else if( b->accounts->reconnect )
59                        cancel_auto_reconnect( b->accounts );
[ebaebfe]60               
[d33679e]61                if( b->accounts->ic == NULL )
62                        account_del( b, b->accounts );
[ebaebfe]63                else
64                        /* Nasty hack, but account_del() doesn't work in this
65                           case and we don't want infinite loops, do we? ;-) */
[d33679e]66                        b->accounts = b->accounts->next;
[ebaebfe]67        }
68       
69        while( b->set )
70                set_del( &b->set, b->set->key );
[81e04e1]71       
[7aadd71]72        bee_group_free( b );
73       
[aea8b68]74        g_free( b->user );
[81e04e1]75        g_free( b );
[ebaebfe]76}
[81186cab]77
78static char *set_eval_away_status( set_t *set, char *value )
79{
80        bee_t *bee = set->data;
81        account_t *a;
82       
83        g_free( set->value );
84        set->value = g_strdup( value );
85       
86        for( a = bee->accounts; a; a = a->next )
87        {
88                struct im_connection *ic = a->ic;
89               
90                if( ic && ic->flags & OPT_LOGGED_IN )
91                        imc_away_send_update( ic );
92        }
93       
94        return value;
95}
Note: See TracBrowser for help on using the repository browser.