- Timestamp:
- 2007-04-23T02:58:44Z (18 years ago)
- Branches:
- master
- Children:
- 2d317bb
- Parents:
- 43671b9
- Location:
- protocols
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/conference.c
r43671b9 r0e7ab64 102 102 103 103 /* Not really the same syntax as the normal pkt_ functions, but this isn't 104 called by the xmltree parser exactly and this way I can add some extra104 called by the xmltree parser directly and this way I can add some extra 105 105 parameters so we won't have to repeat too many things done by the caller 106 106 already. */ … … 151 151 if( s ) *s = '/'; 152 152 } 153 else if( type ) /* This only gets called if type =="unavailable" */153 else if( type ) /* This only gets called if type is NULL or "unavailable" */ 154 154 { 155 155 /* Won't handle this for now. */ -
protocols/nogaim.c
r43671b9 r0e7ab64 856 856 /* Misc. BitlBee stuff which shouldn't really be here */ 857 857 858 struct groupchat *chat_by_channel( char *channel )859 {860 struct im_connection *ic;861 struct groupchat *c;862 GSList *l;863 864 /* This finds the connection which has a conversation which belongs to this channel */865 for( l = connections; l; l = l->next )866 {867 ic = l->data;868 for( c = ic->groupchats; c && g_strcasecmp( c->channel, channel ) != 0; c = c->next );869 if( c )870 return c;871 }872 873 return NULL;874 }875 876 858 char *set_eval_away_devoice( set_t *set, char *value ) 877 859 { -
protocols/nogaim.h
r43671b9 r0e7ab64 207 207 G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, char *who, char *msg, u_int32_t flags, time_t sent_at ); 208 208 G_MODULE_EXPORT void imcb_chat_free( struct groupchat *c ); 209 struct groupchat *chat_by_channel( char *channel );210 209 211 210 /* Actions, or whatever. */
Note: See TracChangeset
for help on using the changeset viewer.