Changeset 9624fdf for protocols/jabber
- Timestamp:
- 2007-04-17T04:49:17Z (18 years ago)
- Branches:
- master
- Children:
- 33dc261
- Parents:
- 717e3bf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/message.c
r717e3bf r9624fdf 76 76 77 77 if( fullmsg->len > 0 ) 78 serv_got_im( ic, bud ? bud->bare_jid : from, fullmsg->str, 0, 0, fullmsg->len);78 imcb_buddy_msg( ic, bud ? bud->bare_jid : from, fullmsg->str, 0, 0 ); 79 79 80 80 g_string_free( fullmsg, TRUE ); … … 84 84 { 85 85 bud->flags |= JBFLAG_DOES_XEP85; 86 serv_got_typing( ic, bud ? bud->bare_jid : from, 0, 1);86 imcb_buddy_typing( ic, bud ? bud->bare_jid : from, OPT_TYPING ); 87 87 } 88 88 /* No need to send a "stopped typing" signal when there's a message. */ … … 90 90 { 91 91 bud->flags |= JBFLAG_DOES_XEP85; 92 serv_got_typing( ic, bud ? bud->bare_jid : from, 0, 0 );92 imcb_buddy_typing( ic, bud ? bud->bare_jid : from, 0 ); 93 93 } 94 94 else if( xt_find_node( node->children, "paused" ) ) 95 95 { 96 96 bud->flags |= JBFLAG_DOES_XEP85; 97 serv_got_typing( ic, bud ? bud->bare_jid : from, 0, 2);97 imcb_buddy_typing( ic, bud ? bud->bare_jid : from, OPT_THINKING ); 98 98 } 99 99
Note: See TracChangeset
for help on using the changeset viewer.