Ignore:
Timestamp:
2006-10-15T20:24:01Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
d74c644
Parents:
e617b35
Message:

Proper cleanup of jabber buddy structures when removing a buddy from the
list, proper checking (and handling) of events related to buddies that
aren't "hashed" yet, limit checks on priorityto setting, renamed JEP85
to XEP85, support for more XEP85 states.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber.h

    re617b35 r788a1af  
    4141        JFLAG_WAIT_BIND = 16,           /* ... for <bind> tag. */
    4242        JFLAG_WANT_TYPING = 32,         /* Set if we ever sent a typing notification, this
    43                                            activates all JEP-85 related code. */
     43                                           activates all XEP-85 related code. */
    4444} jabber_flags_t;
    4545
    4646typedef enum
    4747{
    48         JBFLAG_PROBED_JEP85 = 1,        /* Set this when we sent our probe packet to make
     48        JBFLAG_PROBED_XEP85 = 1,        /* Set this when we sent our probe packet to make
    4949                                           sure it gets sent only once. */
    50         JBFLAG_DOES_JEP85 = 2,          /* Set this when the resource seems to support
    51                                            JEP85 (typing notification shite). */
     50        JBFLAG_DOES_XEP85 = 2,          /* Set this when the resource seems to support
     51                                           XEP85 (typing notification shite). */
    5252} jabber_buddy_flag_t;
    5353
     
    138138struct jabber_buddy *jabber_buddy_by_jid( struct gaim_connection *gc, char *jid );
    139139int jabber_buddy_remove( struct gaim_connection *gc, char *full_jid );
     140int jabber_buddy_remove_bare( struct gaim_connection *gc, char *bare_jid );
    140141
    141142extern const struct jabber_away_state jabber_away_state_list[];
Note: See TracChangeset for help on using the changeset viewer.