Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/ns.c

    r911f2eb ra2582c8  
    3030#include "md5.h"
    3131
    32 static gboolean msn_ns_callback( gpointer data, gint source, b_input_condition cond );
     32static void msn_ns_callback( gpointer data, gint source, GaimInputCondition cond );
    3333static int msn_ns_command( gpointer data, char **cmd, int num_parts );
    3434static int msn_ns_message( gpointer data, char *msg, int msglen, char **cmd, int num_parts );
     
    3636static void msn_auth_got_passport_id( struct passport_reply *rep );
    3737
    38 gboolean msn_ns_connected( gpointer data, gint source, b_input_condition cond )
     38void msn_ns_connected( gpointer data, gint source, GaimInputCondition cond )
    3939{
    4040        struct gaim_connection *gc = data;
     
    4343       
    4444        if( !g_slist_find( msn_connections, gc ) )
    45                 return FALSE;
     45                return;
    4646       
    4747        if( source == -1 )
     
    4949                hide_login_progress( gc, "Could not connect to server" );
    5050                signoff( gc );
    51                 return FALSE;
     51                return;
    5252        }
    5353       
     
    7575        if( msn_write( gc, s, strlen( s ) ) )
    7676        {
    77                 gc->inpa = b_input_add( md->fd, GAIM_INPUT_READ, msn_ns_callback, gc );
     77                gc->inpa = gaim_input_add( md->fd, GAIM_INPUT_READ, msn_ns_callback, gc );
    7878                set_login_progress( gc, 1, "Connected to server, waiting for reply" );
    7979        }
    80        
    81         return FALSE;
    8280}
    8381
    84 static gboolean msn_ns_callback( gpointer data, gint source, b_input_condition cond )
     82void msn_ns_callback( gpointer data, gint source, GaimInputCondition cond )
    8583{
    8684        struct gaim_connection *gc = data;
     
    9189                hide_login_progress( gc, "Error while reading from server" );
    9290                signoff( gc );
    93                
    94                 return FALSE;
    95         }
    96         else
    97                 return TRUE;
     91        }
    9892}
    9993
     
    136130                if( num_parts == 6 && strcmp( cmd[2], "NS" ) == 0 )
    137131                {
    138                         b_event_remove( gc->inpa );
     132                        gaim_input_remove( gc->inpa );
    139133                        gc->inpa = 0;
    140134                        closesocket( md->fd );
     
    223217                else if( num_parts == 7 && strcmp( cmd[2], "OK" ) == 0 )
    224218                {
    225                         set_t *s;
    226                        
    227219                        http_decode( cmd[4] );
    228220                       
    229221                        strncpy( gc->displayname, cmd[4], sizeof( gc->displayname ) );
    230222                        gc->displayname[sizeof(gc->displayname)-1] = 0;
    231                        
    232                         if( ( s = set_find( &gc->acc->set, "display_name" ) ) )
    233                         {
    234                                 g_free( s->value );
    235                                 s->value = g_strdup( cmd[4] );
    236                         }
    237223                       
    238224                        set_login_progress( gc, 1, "Authenticated, getting buddy list" );
     
    525511                if( g_strcasecmp( cmd[3], gc->username ) == 0 )
    526512                {
    527                         set_t *s;
    528                        
    529513                        http_decode( cmd[4] );
    530514                        strncpy( gc->displayname, cmd[4], sizeof( gc->displayname ) );
    531515                        gc->displayname[sizeof(gc->displayname)-1] = 0;
    532                        
    533                         if( ( s = set_find( &gc->acc->set, "display_name" ) ) )
    534                         {
    535                                 g_free( s->value );
    536                                 s->value = g_strdup( cmd[4] );
    537                         }
    538516                }
    539517                else
Note: See TracChangeset for help on using the changeset viewer.