Changeset 038d17f for protocols/jabber/jabber.h
- Timestamp:
- 2006-10-08T16:11:16Z (18 years ago)
- Branches:
- master
- Children:
- 861c199
- Parents:
- 36e9f62
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.h
r36e9f62 r038d17f 60 60 char *away_message; 61 61 62 struct xt_node *node_cache;62 GHashTable *node_cache; 63 63 }; 64 64 … … 67 67 char code[5]; 68 68 char *full_name; 69 }; 70 71 typedef xt_status (*jabber_cache_event) ( struct gaim_connection *gc, struct xt_node *packet ); 72 73 struct jabber_cache_entry 74 { 75 struct xt_node *node; 76 jabber_cache_event func; 69 77 }; 70 78 … … 88 96 char *set_eval_tls( set_t *set, char *value ); 89 97 struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children ); 90 void jabber_cache_packet( struct gaim_connection *gc, struct xt_node *node ); 91 struct xt_node *jabber_packet_from_cache( struct gaim_connection *gc, char *id ); 98 void jabber_cache_add( struct gaim_connection *gc, struct xt_node *node ); 99 struct xt_node *jabber_cache_get( struct gaim_connection *gc, char *id ); 100 void jabber_cache_entry_free( gpointer entry ); 101 void jabber_cache_clean( struct gaim_connection *gc ); 92 102 const struct jabber_away_state *jabber_away_state_by_code( char *code ); 93 103 const struct jabber_away_state *jabber_away_state_by_name( char *name );
Note: See TracChangeset
for help on using the changeset viewer.