Ignore:
Timestamp:
2016-11-20T08:40:36Z (7 years ago)
Author:
dequis <dx@…>
Children:
3f44e43
Parents:
ba52ac5 (diff), 9f03c47 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge master up to commit '9f03c47' into parson

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber.h

    rba52ac5 r537d9b9  
    7575        JCFLAG_MESSAGE_SENT = 1,        /* Set this after sending the first message, so
    7676                                           we can detect echoes/backlogs. */
     77        JCFLAG_ALWAYS_USE_NICKS = 2,
    7778} jabber_chat_flags_t;
    7879
     
    262263void jabber_iq_version_send(struct im_connection *ic, struct jabber_buddy *bud, void *data);
    263264int jabber_iq_disco_server(struct im_connection *ic);
     265int jabber_iq_disco_muc(struct im_connection *ic, const char *muc_server);
    264266
    265267/* si.c */
     
    339341int sasl_oauth2_get_refresh_token(struct im_connection *ic, const char *msg);
    340342int sasl_oauth2_refresh(struct im_connection *ic, const char *refresh_token);
     343void sasl_oauth2_got_token(gpointer data, const char *access_token, const char *refresh_token, const char *error);
    341344
    342345extern const struct oauth2_service oauth2_service_google;
    343346
    344347/* conference.c */
    345 struct groupchat *jabber_chat_join(struct im_connection *ic, const char *room, const char *nick, const char *password);
     348struct groupchat *jabber_chat_join(struct im_connection *ic, const char *room, const char *nick, const char *password,
     349                                   gboolean always_use_nicks);
    346350struct groupchat *jabber_chat_with(struct im_connection *ic, char *who);
    347351struct groupchat *jabber_chat_by_jid(struct im_connection *ic, const char *name);
Note: See TracChangeset for help on using the changeset viewer.