Changeset fe7a554 for protocols/jabber/jabber.h
- Timestamp:
- 2006-09-22T18:39:31Z (18 years ago)
- Branches:
- master
- Children:
- d8e0484
- Parents:
- 8d74291
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.h
r8d74291 rfe7a554 35 35 JFLAG_AUTHENTICATED = 2, /* Set when we're successfully authenticatd. */ 36 36 JFLAG_STREAM_RESTART = 4, /* Set when we want to restart the stream (after SASL or TLS). */ 37 JFLAG_WAIT_SESSION = 8, /* Set if we sent a <session> tag and need a reply before we continue. */ 38 JFLAG_WAIT_BIND = 16, /* ... for <bind> tag. */ 37 39 } jabber_flags_t; 38 40 … … 53 55 char *set_eval_tls( set_t *set, char *value ); 54 56 struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children ); 57 void jabber_cache_packet( struct gaim_connection *gc, struct xt_node *node ); 58 struct xt_node *jabber_packet_from_cache( struct gaim_connection *gc, char *id ); 55 59 56 60 /* io.c */ … … 82 86 char *username; /* USERNAME@server */ 83 87 char *server; /* username@SERVER -=> server/domain, not hostname */ 88 89 struct xt_node *node_cache; 84 90 }; 85 91
Note: See TracChangeset
for help on using the changeset viewer.