- Timestamp:
- 2008-09-28T11:18:19Z (16 years ago)
- Branches:
- master
- Children:
- b2c062d
- Parents:
- e180c59
- Location:
- protocols
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/conference.c
re180c59 r94acdd0 26 26 static xt_status jabber_chat_join_failed( struct im_connection *ic, struct xt_node *node, struct xt_node *orig ); 27 27 28 struct groupchat *jabber_chat_join( struct im_connection *ic, c har *room, char *nick,char *password )28 struct groupchat *jabber_chat_join( struct im_connection *ic, const char *room, const char *nick, const char *password ) 29 29 { 30 30 struct jabber_chat *jc; -
protocols/jabber/jabber.c
re180c59 r94acdd0 425 425 } 426 426 427 static struct groupchat *jabber_chat_join_( struct im_connection *ic, c har *room, char *nick,char *password )427 static struct groupchat *jabber_chat_join_( struct im_connection *ic, const char *room, const char *nick, const char *password ) 428 428 { 429 429 if( strchr( room, '@' ) == NULL ) -
protocols/jabber/jabber.h
re180c59 r94acdd0 240 240 241 241 /* conference.c */ 242 struct groupchat *jabber_chat_join( struct im_connection *ic, c har *room, char *nick,char *password );242 struct groupchat *jabber_chat_join( struct im_connection *ic, const char *room, const char *nick, const char *password ); 243 243 struct groupchat *jabber_chat_by_jid( struct im_connection *ic, const char *name ); 244 244 void jabber_chat_free( struct groupchat *c ); -
protocols/nogaim.c
re180c59 r94acdd0 280 280 281 281 if( set_getbool( &c->set, "auto_join" ) ) 282 chat_join( irc, c );282 chat_join( irc, c, NULL ); 283 283 } 284 284 } … … 710 710 } 711 711 712 struct groupchat *imcb_chat_new( struct im_connection *ic, c har *handle )712 struct groupchat *imcb_chat_new( struct im_connection *ic, const char *handle ) 713 713 { 714 714 struct groupchat *c; -
protocols/nogaim.h
re180c59 r94acdd0 209 209 * not implement this. */ 210 210 struct groupchat * 211 (* chat_join) (struct im_connection *, c har *room, char *nick,char *password);211 (* chat_join) (struct im_connection *, const char *room, const char *nick, const char *password); 212 212 /* Change the topic, if supported. Note that BitlBee expects the IM 213 213 server to confirm the topic change with a regular topic change … … 290 290 * the user her/himself. At that point the group chat will be visible to the 291 291 * user, too. */ 292 G_MODULE_EXPORT struct groupchat *imcb_chat_new( struct im_connection *ic, c har *handle );292 G_MODULE_EXPORT struct groupchat *imcb_chat_new( struct im_connection *ic, const char *handle ); 293 293 G_MODULE_EXPORT void imcb_chat_add_buddy( struct groupchat *b, char *handle ); 294 294 /* To remove a handle from a group chat. Reason can be NULL. */ -
protocols/oscar/oscar.c
re180c59 r94acdd0 2581 2581 } 2582 2582 2583 struct groupchat *oscar_chat_join(struct im_connection * ic, c har * room, char * nick,char * password )2583 struct groupchat *oscar_chat_join(struct im_connection * ic, const char * room, const char * nick, const char * password ) 2584 2584 { 2585 2585 struct oscar_data * od = (struct oscar_data *)ic->proto_data;
Note: See TracChangeset
for help on using the changeset viewer.