Changeset 17a6ee9 for protocols/jabber
- Timestamp:
- 2010-04-11T14:37:06Z (15 years ago)
- Branches:
- master
- Children:
- a87e6ba
- Parents:
- 1f92a58
- Location:
- protocols/jabber
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/iq.c
r1f92a58 r17a6ee9 392 392 if( ( strcmp( sub, "both" ) == 0 || strcmp( sub, "to" ) == 0 ) ) 393 393 { 394 if( initial || imcb_find_buddy(ic, jid ) == NULL )394 if( initial || bee_user_by_handle( ic->bee, ic, jid ) == NULL ) 395 395 imcb_add_buddy( ic, jid, ( group && group->text_len ) ? 396 396 group->text : NULL ); … … 590 590 strcmp( s, "result" ) == 0 ) 591 591 { 592 if( imcb_find_buddy(ic, jid ) == NULL )592 if( bee_user_by_handle( ic->bee, ic, jid ) == NULL ) 593 593 imcb_add_buddy( ic, jid, NULL ); 594 594 } -
protocols/jabber/jabber.c
r1f92a58 r17a6ee9 267 267 268 268 while( jd->filetransfers ) 269 imcb_file_canceled( ( ( struct jabber_transfer *) jd->filetransfers->data )->ft, "Logging out" );269 imcb_file_canceled( ic, ( ( struct jabber_transfer *) jd->filetransfers->data )->ft, "Logging out" ); 270 270 271 271 while( jd->streamhosts ) -
protocols/jabber/jabber_util.c
r1f92a58 r17a6ee9 279 279 presence_send_request( bla->ic, bla->handle, "subscribed" ); 280 280 281 if( imcb_find_buddy( bla->ic, bla->handle ) == NULL ) 282 imcb_ask_add( bla->ic, bla->handle, NULL ); 281 imcb_ask_add( bla->ic, bla->handle, NULL ); 283 282 284 283 g_free( bla->handle ); … … 462 461 463 462 if( bud == NULL && ( flags & GET_BUDDY_CREAT ) && 464 ( bare_exists || imcb_find_buddy(ic, jid ) ) )463 ( bare_exists || bee_user_by_handle( ic->bee, ic, jid ) ) ) 465 464 { 466 465 *s = '/'; … … 483 482 if( bud == NULL ) 484 483 /* No match. Create it now? */ 485 return ( ( flags & GET_BUDDY_CREAT ) && imcb_find_buddy( ic, jid_ ) ) ? 484 return ( ( flags & GET_BUDDY_CREAT ) && 485 bee_user_by_handle( ic->bee, ic, jid_ ) ) ? 486 486 jabber_buddy_add( ic, jid_ ) : NULL; 487 487 else if( bud->resource && ( flags & GET_BUDDY_EXACT ) ) -
protocols/jabber/s5bytestream.c
r1f92a58 r17a6ee9 566 566 xt_free_node( reply ); 567 567 568 imcb_file_canceled( tf-> ft, "couldn't connect to any streamhosts" );568 imcb_file_canceled( tf->ic, tf->ft, "couldn't connect to any streamhosts" ); 569 569 570 570 bt->tf->watch_in = 0; … … 603 603 604 604 if( !jabber_write_packet( tf->ic, reply ) ) 605 imcb_file_canceled( tf-> ft, "Error transmitting bytestream response" );605 imcb_file_canceled( tf->ic, tf->ft, "Error transmitting bytestream response" ); 606 606 xt_free_node( reply ); 607 607 } … … 643 643 644 644 if( tf->bytesread >= tf->ft->file_size ) 645 imcb_file_finished( tf-> ft );645 imcb_file_finished( tf->ic, tf->ft ); 646 646 647 647 tf->ft->write( tf->ft, tf->ft->buffer, ret ); … … 659 659 if( tf->watch_in ) 660 660 { 661 imcb_file_canceled( ft, "BUG in jabber file transfer: write_request called when already watching for input" );661 imcb_file_canceled( tf->ic, ft, "BUG in jabber file transfer: write_request called when already watching for input" ); 662 662 return FALSE; 663 663 } … … 705 705 706 706 if( tf->byteswritten >= ft->file_size ) 707 imcb_file_finished( ft );707 imcb_file_finished( tf->ic, ft ); 708 708 else 709 709 bt->tf->watch_out = b_input_add( tf->fd, GAIM_INPUT_WRITE, jabber_bs_send_can_write, bt ); … … 1005 1005 1006 1006 if( !jabber_write_packet( tf->ic, iq ) ) 1007 imcb_file_canceled( tf-> ft, "Error transmitting bytestream request" );1007 imcb_file_canceled( tf->ic, tf->ft, "Error transmitting bytestream request" ); 1008 1008 return TRUE; 1009 1009 } … … 1020 1020 1021 1021 if( jd->streamhosts==NULL ) /* we're done here unless we have a proxy to try */ 1022 imcb_file_canceled( tf-> ft, error );1022 imcb_file_canceled( tf->ic, tf->ft, error ); 1023 1023 1024 1024 /* MUST always return FALSE! */ -
protocols/jabber/si.c
r1f92a58 r17a6ee9 91 91 92 92 if( !foundft ) 93 imcb_file_canceled( tf-> ft, "Buddy's client doesn't feature file transfers" );93 imcb_file_canceled( tf->ic, tf->ft, "Buddy's client doesn't feature file transfers" ); 94 94 else if( !foundbt ) 95 imcb_file_canceled( tf-> ft, "Buddy's client doesn't feature byte streams (required)" );95 imcb_file_canceled( tf->ic, tf->ft, "Buddy's client doesn't feature byte streams (required)" ); 96 96 else if( !foundsi ) 97 imcb_file_canceled( tf-> ft, "Buddy's client doesn't feature stream initiation (required)" );97 imcb_file_canceled( tf->ic, tf->ft, "Buddy's client doesn't feature stream initiation (required)" ); 98 98 99 99 return foundft && foundbt && foundsi; … … 109 109 110 110 /* and start the receive logic */ 111 imcb_file_recv_start( tf-> ft );111 imcb_file_recv_start( tf->ic, tf->ft ); 112 112 113 113 } … … 156 156 if( bud == NULL ) 157 157 { 158 imcb_file_canceled( ft, "Couldn't find buddy (BUG?)" );158 imcb_file_canceled( ic, ft, "Couldn't find buddy (BUG?)" ); 159 159 return; 160 160 }
Note: See TracChangeset
for help on using the changeset viewer.