Changeset 0b9daac for protocols/jabber
- Timestamp:
- 2015-02-20T23:16:08Z (10 years ago)
- Parents:
- 5ebff60
- git-author:
- dequis <dx@…> (27-12-14 04:06:45)
- git-committer:
- dequis <dx@…> (20-02-15 23:16:08)
- Location:
- protocols/jabber
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/conference.c
r5ebff60 r0b9daac 23 23 24 24 #include "jabber.h" 25 #include " sha1.h"25 #include "lib/sha1.h" 26 26 27 27 static xt_status jabber_chat_join_failed(struct im_connection *ic, struct xt_node *node, struct xt_node *orig); -
protocols/jabber/io.c
r5ebff60 r0b9daac 23 23 24 24 #include "jabber.h" 25 #include " ssl_client.h"25 #include "lib/ssl_client.h" 26 26 27 27 static gboolean jabber_write_callback(gpointer data, gint fd, b_input_condition cond); -
protocols/jabber/iq.c
r5ebff60 r0b9daac 23 23 24 24 #include "jabber.h" 25 #include " sha1.h"25 #include "lib/sha1.h" 26 26 27 27 static xt_status jabber_parse_roster(struct im_connection *ic, struct xt_node *node, struct xt_node *orig); -
protocols/jabber/jabber.c
r5ebff60 r0b9daac 28 28 #include <stdio.h> 29 29 30 #include " ssl_client.h"31 #include " xmltree.h"30 #include "lib/ssl_client.h" 31 #include "lib/xmltree.h" 32 32 #include "bitlbee.h" 33 33 #include "jabber.h" 34 #include " oauth.h"35 #include " md5.h"34 #include "lib/oauth.h" 35 #include "lib/md5.h" 36 36 37 37 GSList *jabber_connections; -
protocols/jabber/jabber.h
r5ebff60 r0b9daac 28 28 29 29 #include "bitlbee.h" 30 #include " md5.h"31 #include " xmltree.h"30 #include "lib/md5.h" 31 #include "lib/xmltree.h" 32 32 33 33 extern GSList *jabber_connections; -
protocols/jabber/jabber_util.c
r5ebff60 r0b9daac 23 23 24 24 #include "jabber.h" 25 #include " md5.h"26 #include " base64.h"25 #include "lib/md5.h" 26 #include "lib/base64.h" 27 27 28 28 static unsigned int next_id = 1; -
protocols/jabber/s5bytestream.c
r5ebff60 r0b9daac 23 23 24 24 #include "jabber.h" 25 #include " sha1.h"25 #include "lib/sha1.h" 26 26 #include "lib/ftutil.h" 27 27 #include <poll.h> -
protocols/jabber/sasl.c
r5ebff60 r0b9daac 25 25 26 26 #include "jabber.h" 27 #include " base64.h"28 #include " oauth2.h"29 #include " oauth.h"27 #include "lib/base64.h" 28 #include "lib/oauth2.h" 29 #include "lib/oauth.h" 30 30 31 31 const struct oauth2_service oauth2_service_google = -
protocols/jabber/si.c
r5ebff60 r0b9daac 23 23 24 24 #include "jabber.h" 25 #include " sha1.h"25 #include "lib/sha1.h" 26 26 27 27 void jabber_si_answer_request(file_transfer_t *ft);
Note: See TracChangeset
for help on using the changeset viewer.