Changeset 2ecfe39 for protocols/jabber/iq.c
- Timestamp:
- 2008-02-17T02:12:09Z (17 years ago)
- Branches:
- master
- Children:
- d858d21
- Parents:
- 37bff51 (diff), 2d88d25a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/iq.c
r37bff51 r2ecfe39 526 526 } 527 527 528 static xt_status jabber_add_to_roster_callback( struct im_connection *ic, struct xt_node *node, struct xt_node *orig ); 529 528 530 int jabber_add_to_roster( struct im_connection *ic, char *handle, char *name ) 529 531 { … … 541 543 xt_add_attr( node, "xmlns", XMLNS_ROSTER ); 542 544 node = jabber_make_packet( "iq", "set", NULL, node ); 545 jabber_cache_add( ic, node, jabber_add_to_roster_callback ); 543 546 544 547 st = jabber_write_packet( ic, node ); 545 548 546 xt_free_node( node );547 549 return st; 550 } 551 552 static xt_status jabber_add_to_roster_callback( struct im_connection *ic, struct xt_node *node, struct xt_node *orig ) 553 { 554 char *s, *jid = NULL; 555 struct xt_node *c; 556 557 if( ( c = xt_find_node( orig->children, "query" ) ) && 558 ( c = xt_find_node( c->children, "item" ) ) && 559 ( jid = xt_find_attr( c, "jid" ) ) && 560 ( s = xt_find_attr( node, "type" ) ) && 561 strcmp( s, "result" ) == 0 ) 562 { 563 if( imcb_find_buddy( ic, jid ) == NULL ) 564 imcb_add_buddy( ic, jid, NULL ); 565 } 566 else 567 { 568 imcb_log( ic, "Error while adding `%s' to your contact list.", 569 jid ? jid : "(unknown handle)" ); 570 } 571 572 return XT_HANDLED; 548 573 } 549 574
Note: See TracChangeset
for help on using the changeset viewer.