Changes in protocols/yahoo/yahoo.c [5a348c3:5b52a48]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/yahoo.c
r5a348c3 r5b52a48 121 121 } 122 122 123 static void byahoo_login( struct aim_user *user)124 { 125 struct gaim_connection *gc = new_gaim_conn( user);123 static void byahoo_login( account_t *acc ) 124 { 125 struct gaim_connection *gc = new_gaim_conn( acc ); 126 126 struct byahoo_data *yd = gc->proto_data = g_new0( struct byahoo_data, 1 ); 127 127 … … 130 130 131 131 set_login_progress( gc, 1, "Connecting" ); 132 yd->y2_id = yahoo_init( user->username, user->password);132 yd->y2_id = yahoo_init( acc->user, acc->pass ); 133 133 yahoo_login( yd->y2_id, yd->current_status ); 134 134 } … … 409 409 ret->chat_leave = byahoo_chat_leave; 410 410 ret->chat_open = byahoo_chat_open; 411 ret->cmp_buddynames = g_strcasecmp; 411 412 ret->handle_cmp = g_strcasecmp; 412 413 413 414 register_protocol(ret); … … 425 426 yd = gc->proto_data; 426 427 427 if( !strcmp(gc->prpl->name, "yahoo")&& yd->y2_id == id )428 if( strcmp( gc->acc->prpl->name, "yahoo" ) == 0 && yd->y2_id == id ) 428 429 return( gc ); 429 430 } … … 443 444 }; 444 445 445 void byahoo_connect_callback( gpointer data, gint source, GaimInputCondition cond )446 void byahoo_connect_callback( gpointer data, gint source, b_input_condition cond ) 446 447 { 447 448 struct byahoo_connect_callback_data *d = data; … … 465 466 }; 466 467 467 void byahoo_read_ready_callback( gpointer data, gint source, GaimInputCondition cond )468 gboolean byahoo_read_ready_callback( gpointer data, gint source, b_input_condition cond ) 468 469 { 469 470 struct byahoo_read_ready_data *d = data; 470 471 471 472 if( !byahoo_get_gc_by_id( d->id ) ) 472 {473 473 /* WTF doesn't libyahoo clean this up? */ 474 ext_yahoo_remove_handler( d->id, d->tag ); 475 return; 476 } 474 return FALSE; 477 475 478 476 yahoo_read_ready( d->id, d->fd, d->data ); 477 478 return TRUE; 479 479 } 480 480 … … 487 487 }; 488 488 489 void byahoo_write_ready_callback( gpointer data, gint source, GaimInputCondition cond )489 gboolean byahoo_write_ready_callback( gpointer data, gint source, b_input_condition cond ) 490 490 { 491 491 struct byahoo_write_ready_data *d = data; 492 492 493 493 if( !byahoo_get_gc_by_id( d->id ) ) 494 {495 494 /* WTF doesn't libyahoo clean this up? */ 496 ext_yahoo_remove_handler( d->id, d->tag ); 497 return; 498 } 495 return FALSE; 499 496 500 497 yahoo_write_ready( d->id, d->fd, d->data ); 498 499 return FALSE; 501 500 } 502 501 … … 687 686 688 687 inp->d = d; 689 d->tag = inp->h = gaim_input_add( fd, GAIM_INPUT_READ, (GaimInputFunction) byahoo_read_ready_callback, (gpointer) d );688 d->tag = inp->h = b_input_add( fd, GAIM_INPUT_READ, (b_event_handler) byahoo_read_ready_callback, (gpointer) d ); 690 689 } 691 690 else if( cond == YAHOO_INPUT_WRITE ) … … 698 697 699 698 inp->d = d; 700 d->tag = inp->h = gaim_input_add( fd, GAIM_INPUT_WRITE, (GaimInputFunction) byahoo_write_ready_callback, (gpointer) d );699 d->tag = inp->h = b_input_add( fd, GAIM_INPUT_WRITE, (b_event_handler) byahoo_write_ready_callback, (gpointer) d ); 701 700 } 702 701 else … … 729 728 } 730 729 731 gaim_input_remove( tag );730 b_event_remove( tag ); 732 731 } 733 732 … … 738 737 739 738 d = g_new0( struct byahoo_connect_callback_data, 1 ); 740 if( ( fd = proxy_connect( host, port, ( GaimInputFunction) byahoo_connect_callback, (gpointer) d ) ) < 0 )739 if( ( fd = proxy_connect( host, port, (b_event_handler) byahoo_connect_callback, (gpointer) d ) ) < 0 ) 741 740 { 742 741 g_free( d );
Note: See TracChangeset
for help on using the changeset viewer.