Changeset 5997488 for protocols/jabber/jabber.h
- Timestamp:
- 2006-09-22T12:04:35Z (19 years ago)
- Branches:
- master
- Children:
- 8d74291
- Parents:
- deff040
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.h
rdeff040 r5997488 32 32 typedef enum 33 33 { 34 JFLAG_STREAM_STARTED = 1, 35 JFLAG_AUTHENTICATED = 2, 34 JFLAG_STREAM_STARTED = 1, /* Set when we detected the beginning of the stream and want to do auth. */ 35 JFLAG_AUTHENTICATED = 2, /* Set when we're successfully authenticatd. */ 36 JFLAG_STREAM_RESTART = 4, /* Set when we want to restart the stream (after SASL or TLS). */ 37 JFLAG_SUPPORTS_TLS = 8, /* Set when there's <starttls/> in <stream:features>. */ 36 38 } jabber_flags_t; 37 39 … … 60 62 void jabber_end_stream( struct gaim_connection *gc ); 61 63 64 /* sasl.c */ 65 xt_status sasl_pkt_mechanisms( struct xt_node *node, gpointer data ); 66 xt_status sasl_pkt_challenge( struct xt_node *node, gpointer data ); 67 xt_status sasl_pkt_result( struct xt_node *node, gpointer data ); 68 62 69 struct jabber_data 63 70 {
Note: See TracChangeset
for help on using the changeset viewer.