Changeset 2758cfe


Ignore:
Timestamp:
2007-07-01T15:22:42Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
b9f8b87
Parents:
40ef702
Message:

Properly updating away state info if one resource goes down while another
one's still there. Not sending offline notifications is great, but updating
the away state info is even better. :-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/presence.c

    r40ef702 r2758cfe  
    3131        struct xt_node *c;
    3232        struct jabber_buddy *bud;
    33         int is_chat = 0;
     33        int is_chat = 0, is_away = 0;
    3434        char *s;
    3535       
     
    4747        if( type == NULL )
    4848        {
    49                 int is_away = 0;
    50                
    5149                if( !( bud = jabber_buddy_by_jid( ic, from, GET_BUDDY_EXACT | GET_BUDDY_CREAT ) ) )
    5250                {
     
    113111                        *s = 0;
    114112               
    115                         /* Only count this as offline if there's no other resource
    116                            available anymore. */
    117                         if( jabber_buddy_by_jid( ic, from, 0 ) == NULL )
     113                        /* If another resource is still available, send its presence
     114                           information. */
     115                        if( ( bud = jabber_buddy_by_jid( ic, from, 0 ) ) )
     116                        {
     117                                if( bud->away_state && ( *bud->away_state->code == 0 ||
     118                                    strcmp( bud->away_state->code, "chat" ) == 0 ) )
     119                                        is_away = OPT_AWAY;
     120                               
     121                                imcb_buddy_status( ic, bud->bare_jid, OPT_LOGGED_IN | is_away,
     122                                                   ( is_away && bud->away_state ) ? bud->away_state->full_name : NULL,
     123                                                   bud->away_message );
     124                        }
     125                        else
     126                        {
     127                                /* Otherwise, count him/her as offline now. */
    118128                                imcb_buddy_status( ic, from, 0, NULL, NULL );
    119                         /* FIXME: If this resource was not away and another resource is,
    120                            we should definitely send an update here. */
     129                        }
    121130                       
    122131                        *s = '/';
Note: See TracChangeset for help on using the changeset viewer.