Ignore:
Timestamp:
2010-09-04T15:54:52Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
27053b5
Parents:
bae0617
Message:

This works (includes some token sabotage code to ease testing), but I just
realised there's probably no need for the additional temporary NS connection.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/msn.c

    rbae0617 r4aa8a04  
    6464        md->away_state = msn_away_state_list;
    6565        md->domaintree = g_tree_new( msn_domaintree_cmp );
     66        md->ns->fd = md->auth->fd = -1;
    6667       
    6768        msn_connections = g_slist_prepend( msn_connections, ic );
     
    180181        struct msn_data *md = ic->proto_data;
    181182       
     183        strcpy( md->tokens[1], md->tokens[2] );
     184       
    182185        if( state == NULL )
    183186                md->away_state = msn_away_state_list;
     
    281284static void msn_rem_permit( struct im_connection *ic, char *who )
    282285{
    283         msn_buddy_list_remove( ic, MSN_BUDDY_AL, who, NULL );
     286        //msn_buddy_list_remove( ic, MSN_BUDDY_AL, who, NULL );
    284287}
    285288
     
    299302static void msn_rem_deny( struct im_connection *ic, char *who )
    300303{
    301         msn_buddy_list_remove( ic, MSN_BUDDY_BL, who, NULL );
     304        //msn_buddy_list_remove( ic, MSN_BUDDY_BL, who, NULL );
    302305}
    303306
Note: See TracChangeset for help on using the changeset viewer.