Changeset f6c963b for protocols/jabber
- Timestamp:
- 2007-04-21T04:13:21Z (18 years ago)
- Branches:
- master
- Children:
- d11dd2f
- Parents:
- b0eaa5b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.c
rb0eaa5b rf6c963b 219 219 } 220 220 221 static int jabber_ send_im( struct im_connection *ic, char *who, char *message, int flags )221 static int jabber_buddy_msg( struct im_connection *ic, char *who, char *message, int flags ) 222 222 { 223 223 struct jabber_data *jd = ic->proto_data; … … 386 386 ret->init = jabber_init; 387 387 ret->logout = jabber_logout; 388 ret-> send_im = jabber_send_im;388 ret->buddy_msg = jabber_buddy_msg; 389 389 ret->away_states = jabber_away_states; 390 390 // ret->get_status_string = jabber_get_status_string; … … 394 394 ret->add_buddy = jabber_add_buddy; 395 395 ret->remove_buddy = jabber_remove_buddy; 396 // ret->chat_ send = jabber_chat_send;396 // ret->chat_msg = jabber_chat_msg; 397 397 // ret->chat_invite = jabber_chat_invite; 398 398 // ret->chat_leave = jabber_chat_leave;
Note: See TracChangeset
for help on using the changeset viewer.