Changes in protocols/jabber/jabber.h [3a620ff:399d65a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.h
r3a620ff r399d65a 75 75 JCFLAG_MESSAGE_SENT = 1, /* Set this after sending the first message, so 76 76 we can detect echoes/backlogs. */ 77 JCFLAG_ALWAYS_USE_NICKS = 2, 77 78 } jabber_chat_flags_t; 78 79 … … 262 263 void jabber_iq_version_send(struct im_connection *ic, struct jabber_buddy *bud, void *data); 263 264 int jabber_iq_disco_server(struct im_connection *ic); 265 int jabber_iq_disco_muc(struct im_connection *ic, const char *muc_server); 264 266 265 267 /* si.c */ … … 339 341 int sasl_oauth2_get_refresh_token(struct im_connection *ic, const char *msg); 340 342 int sasl_oauth2_refresh(struct im_connection *ic, const char *refresh_token); 343 void sasl_oauth2_got_token(gpointer data, const char *access_token, const char *refresh_token, const char *error); 341 344 342 345 extern const struct oauth2_service oauth2_service_google; 343 346 344 347 /* conference.c */ 345 struct groupchat *jabber_chat_join(struct im_connection *ic, const char *room, const char *nick, const char *password); 348 struct groupchat *jabber_chat_join(struct im_connection *ic, const char *room, const char *nick, const char *password, 349 gboolean always_use_nicks); 346 350 struct groupchat *jabber_chat_with(struct im_connection *ic, char *who); 347 351 struct groupchat *jabber_chat_by_jid(struct im_connection *ic, const char *name);
Note: See TracChangeset
for help on using the changeset viewer.