Changes in protocols/jabber/jabber.h [dd43c62:3a620ff]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.h
rdd43c62 r3a620ff 50 50 JFLAG_GTALK = 0x100000, /* Is Google Talk, as confirmed by iq discovery */ 51 51 JFLAG_HIPCHAT = 0x200000, /* Is hipchat, because prpl->name says so */ 52 53 JFLAG_SASL_FB = 0x10000, /* Trying Facebook authentication. */54 52 } jabber_flags_t; 55 53 … … 113 111 GSList *streamhosts; 114 112 int have_streamhosts; 113 114 char *muc_host; 115 115 }; 116 116 … … 228 228 #define XMLNS_XDATA "jabber:x:data" /* XEP-0004 */ 229 229 #define XMLNS_GMAILNOTIFY "google:mail:notify" /* Not a XEP */ 230 #define XMLNS_CARBONS "urn:xmpp:carbons:2" /* XEP-0280 */ 231 #define XMLNS_FORWARDING "urn:xmpp:forward:0" /* XEP-0297 */ 232 #define XMLNS_HINTS "urn:xmpp:hints" /* XEP-0334 */ 230 233 #define XMLNS_CHATSTATES "http://jabber.org/protocol/chatstates" /* XEP-0085 */ 231 234 #define XMLNS_DISCO_INFO "http://jabber.org/protocol/disco#info" /* XEP-0030 */ … … 338 341 339 342 extern const struct oauth2_service oauth2_service_google; 340 extern const struct oauth2_service oauth2_service_facebook;341 343 342 344 /* conference.c */ … … 356 358 xt_status jabber_parse_hipchat_profile(struct im_connection *ic, struct xt_node *node, struct xt_node *orig); 357 359 xt_status hipchat_handle_success(struct im_connection *ic, struct xt_node *node); 360 char *hipchat_make_channel_slug(const char *name); 361 char *hipchat_guess_channel_name(struct im_connection *ic, const char *name); 358 362 359 363 #endif
Note: See TracChangeset
for help on using the changeset viewer.