Changeset 0b9daac
- 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)
- Files:
-
- 86 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r5ebff60 r0b9daac 11 11 # Program variables 12 12 objects = bitlbee.o dcc.o help.o ipc.o irc.o irc_im.o irc_channel.o irc_commands.o irc_send.o irc_user.o irc_util.o nick.o $(OTR_BI) query.o root_commands.o set.o storage.o $(STORAGE_OBJS) unix.o conf.o log.o 13 headers = $( wildcard $(_SRCDIR_)*.h $(_SRCDIR_)lib/*.h $(_SRCDIR_)protocols/*.h)13 headers = $(foreach dir,./ ./lib/ ./protocols/,$(patsubst $(_SRCDIR_)%,%,$(wildcard $(_SRCDIR_)$(dir)*.h))) 14 14 subdirs = lib protocols 15 15 … … 92 92 93 93 install-dev: 94 mkdir -p $(DESTDIR)$(INCLUDEDIR) 94 mkdir -p $(DESTDIR)$(INCLUDEDIR) $(DESTDIR)$(INCLUDEDIR)lib $(DESTDIR)$(INCLUDEDIR)protocols 95 95 $(INSTALL) -m 0644 config.h $(DESTDIR)$(INCLUDEDIR) 96 for i in $(headers); do $(INSTALL) -m 0644 $ $i $(DESTDIR)$(INCLUDEDIR); done96 for i in $(headers); do $(INSTALL) -m 0644 $(_SRCDIR_)$$i $(DESTDIR)$(INCLUDEDIR)$$i; done 97 97 mkdir -p $(DESTDIR)$(PCDIR) 98 98 $(INSTALL) -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR) 99 99 100 100 uninstall-dev: 101 rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR) /$(hdr))102 -rmdir $(DESTDIR)$(INCLUDEDIR) 101 rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR)$(hdr)) 102 -rmdir $(DESTDIR)$(INCLUDEDIR)lib $(DESTDIR)$(INCLUDEDIR)protocols $(DESTDIR)$(INCLUDEDIR) 103 103 rm -f $(DESTDIR)$(PCDIR)/bitlbee.pc 104 104 -
bitlbee.h
r5ebff60 r0b9daac 44 44 45 45 #if HAVE_CONFIG_H 46 #include <config.h>46 #include "config.h" 47 47 #endif 48 48 … … 132 132 #define PASSWORD_PENDING "\r\rchangeme\r\r" 133 133 134 #include " bee.h"134 #include "protocols/bee.h" 135 135 #include "irc.h" 136 136 #include "storage.h" 137 137 #include "set.h" 138 #include " nogaim.h"138 #include "protocols/nogaim.h" 139 139 #include "commands.h" 140 #include " account.h"140 #include "protocols/account.h" 141 141 #include "nick.h" 142 142 #include "conf.h" 143 143 #include "log.h" 144 #include " ini.h"144 #include "lib/ini.h" 145 145 #include "query.h" 146 146 #include "sock.h" 147 #include " misc.h"148 #include " proxy.h"147 #include "lib/misc.h" 148 #include "lib/proxy.h" 149 149 150 150 typedef struct global { -
conf.c
r5ebff60 r0b9daac 30 30 #include <stdlib.h> 31 31 #include "conf.h" 32 #include " ini.h"33 #include " url.h"32 #include "lib/ini.h" 33 #include "lib/url.h" 34 34 #include "ipc.h" 35 35 36 #include " proxy.h"36 #include "lib/proxy.h" 37 37 38 38 static int conf_loadini(conf_t *conf, char *file); -
configure
r5ebff60 r0b9daac 231 231 232 232 echo CFLAGS=$CFLAGS $CPPFLAGS >> Makefile.settings 233 echo CFLAGS+=-I${srcdir} -I${srcdir}/lib -I${srcdir}/protocols -I.>> Makefile.settings233 echo CFLAGS+=-I${srcdir} >> Makefile.settings 234 234 235 235 echo CFLAGS+=-DHAVE_CONFIG_H -D_GNU_SOURCE >> Makefile.settings … … 707 707 Version: $BITLBEE_VERSION 708 708 Libs: 709 Cflags: -I\${includedir}709 Cflags: 710 710 711 711 EOF -
dcc.c
r5ebff60 r0b9daac 24 24 #define BITLBEE_CORE 25 25 #include "bitlbee.h" 26 #include " ft.h"26 #include "protocols/ft.h" 27 27 #include "dcc.h" 28 28 #include <netinet/tcp.h> -
lib/arc.c
r5ebff60 r0b9daac 45 45 #include <stdlib.h> 46 46 #include <string.h> 47 #include " misc.h"48 #include " arc.h"47 #include "lib/misc.h" 48 #include "lib/arc.h" 49 49 50 50 /* Add some seed to the password, to make sure we *never* use the same key. -
lib/base64.c
r5ebff60 r0b9daac 25 25 #include <glib.h> 26 26 #include <string.h> 27 #include " base64.h"27 #include "lib/base64.h" 28 28 29 29 char *tobase64(const char *text) -
lib/events_glib.c
r5ebff60 r0b9daac 38 38 #include <fcntl.h> 39 39 #include <errno.h> 40 #include " proxy.h"40 #include "lib/proxy.h" 41 41 42 42 typedef struct _GaimIOClosure { -
lib/events_libevent.c
r5ebff60 r0b9daac 34 34 #include <sys/time.h> 35 35 #include <event.h> 36 #include " proxy.h"36 #include "lib/proxy.h" 37 37 38 38 static void b_main_restart(); -
lib/http_client.c
r5ebff60 r0b9daac 27 27 #include <stdio.h> 28 28 29 #include " http_client.h"30 #include " url.h"29 #include "lib/http_client.h" 30 #include "lib/url.h" 31 31 #include "sock.h" 32 32 -
lib/http_client.h
r5ebff60 r0b9daac 34 34 35 35 #include <glib.h> 36 #include " ssl_client.h"36 #include "lib/ssl_client.h" 37 37 38 38 struct http_request; -
lib/json.c
r5ebff60 r0b9daac 30 30 #include <glib.h> 31 31 32 #include " json.h"32 #include "lib/json.h" 33 33 34 34 #ifdef _MSC_VER -
lib/json_util.c
r5ebff60 r0b9daac 26 26 #include <glib.h> 27 27 28 #include " json_util.h"28 #include "lib/json_util.h" 29 29 30 30 json_value *json_o_get(const json_value *obj, const json_char *name) -
lib/json_util.h
r5ebff60 r0b9daac 22 22 ****************************************************************************/ 23 23 24 #include " json.h"24 #include "lib/json.h" 25 25 26 26 #define JSON_O_FOREACH(o, k, v) \ -
lib/md5.c
r5ebff60 r0b9daac 1 #include " md5.h"1 #include "lib/md5.h" 2 2 3 3 /* Creates a new GChecksum in ctx */ -
lib/misc.c
r5ebff60 r0b9daac 32 32 33 33 #define BITLBEE_CORE 34 #include " nogaim.h"35 #include " base64.h"36 #include " md5.h"34 #include "protocols/nogaim.h" 35 #include "lib/base64.h" 36 #include "lib/md5.h" 37 37 #include <stdio.h> 38 38 #include <stdlib.h> … … 47 47 #endif 48 48 49 #include " md5.h"50 #include " ssl_client.h"49 #include "lib/md5.h" 50 #include "lib/ssl_client.h" 51 51 52 52 void strip_linefeed(gchar *text) -
lib/oauth.c
r5ebff60 r0b9daac 26 26 #include <stdlib.h> 27 27 #include <string.h> 28 #include " http_client.h"29 #include " base64.h"30 #include " misc.h"31 #include " sha1.h"32 #include " url.h"33 #include " oauth.h"28 #include "lib/http_client.h" 29 #include "lib/base64.h" 30 #include "lib/misc.h" 31 #include "lib/sha1.h" 32 #include "lib/url.h" 33 #include "lib/oauth.h" 34 34 35 35 #define HMAC_BLOCK_SIZE 64 -
lib/oauth2.c
r5ebff60 r0b9daac 39 39 40 40 #include <glib.h> 41 #include " http_client.h"42 #include " oauth2.h"43 #include " oauth.h"44 #include " json.h"45 #include " json_util.h"46 #include " url.h"41 #include "lib/http_client.h" 42 #include "lib/oauth2.h" 43 #include "lib/oauth.h" 44 #include "lib/json.h" 45 #include "lib/json_util.h" 46 #include "lib/url.h" 47 47 48 48 char *oauth2_url(const struct oauth2_service *sp) -
lib/proxy.c
r5ebff60 r0b9daac 33 33 #include <fcntl.h> 34 34 #include <errno.h> 35 #include " nogaim.h"36 #include " proxy.h"37 #include " base64.h"35 #include "protocols/nogaim.h" 36 #include "lib/proxy.h" 37 #include "lib/base64.h" 38 38 39 39 char proxyhost[128] = ""; -
lib/proxy.h
r5ebff60 r0b9daac 34 34 #include <gmodule.h> 35 35 36 #include " events.h"36 #include "lib/events.h" 37 37 38 38 #define PROXY_NONE 0 -
lib/sha1.c
r5ebff60 r0b9daac 1 #include " sha1.h"1 #include "lib/sha1.h" 2 2 #include <string.h> 3 3 #include <stdio.h> 4 4 5 5 6 -
lib/ssl_client.h
r5ebff60 r0b9daac 33 33 34 34 #include <glib.h> 35 #include " proxy.h"35 #include "lib/proxy.h" 36 36 37 37 /* Some generic error codes. Especially SSL_AGAIN is important if you -
lib/ssl_gnutls.c
r5ebff60 r0b9daac 29 29 #include <fcntl.h> 30 30 #include <unistd.h> 31 #include " proxy.h"32 #include " ssl_client.h"31 #include "lib/proxy.h" 32 #include "lib/ssl_client.h" 33 33 #include "sock.h" 34 34 #include "stdlib.h" -
lib/ssl_nss.c
r5ebff60 r0b9daac 27 27 28 28 #include "bitlbee.h" 29 #include " proxy.h"30 #include " ssl_client.h"29 #include "lib/proxy.h" 30 #include "lib/ssl_client.h" 31 31 #include "sock.h" 32 32 #include <nspr.h> -
lib/ssl_openssl.c
r5ebff60 r0b9daac 32 32 33 33 #include "bitlbee.h" 34 #include " proxy.h"35 #include " ssl_client.h"34 #include "lib/proxy.h" 35 #include "lib/ssl_client.h" 36 36 #include "sock.h" 37 37 -
lib/url.c
r5ebff60 r0b9daac 24 24 */ 25 25 26 #include " url.h"26 #include "lib/url.h" 27 27 28 28 /* Convert an URL to a url_t structure */ -
lib/xmltree.c
r5ebff60 r0b9daac 28 28 #include <stdio.h> 29 29 30 #include " xmltree.h"30 #include "lib/xmltree.h" 31 31 32 32 #define g_strcasecmp g_ascii_strcasecmp -
protocols/account.c
r5ebff60 r0b9daac 26 26 #define BITLBEE_CORE 27 27 #include "bitlbee.h" 28 #include " account.h"28 #include "protocols/account.h" 29 29 30 30 static const char* account_protocols_local[] = { -
protocols/bee_ft.c
r5ebff60 r0b9daac 24 24 #define BITLBEE_CORE 25 25 #include "bitlbee.h" 26 #include " ft.h"26 #include "protocols/ft.h" 27 27 28 28 file_transfer_t *imcb_file_send_start(struct im_connection *ic, char *handle, char *file_name, size_t file_size) -
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); -
protocols/msn/msn.c
r5ebff60 r0b9daac 24 24 */ 25 25 26 #include " nogaim.h"26 #include "protocols/nogaim.h" 27 27 #include "soap.h" 28 28 #include "msn.h" -
protocols/msn/msn_util.c
r5ebff60 r0b9daac 24 24 */ 25 25 26 #include " nogaim.h"26 #include "protocols/nogaim.h" 27 27 #include "msn.h" 28 #include " md5.h"28 #include "lib/md5.h" 29 29 #include "soap.h" 30 30 #include <ctype.h> -
protocols/msn/ns.c
r5ebff60 r0b9daac 26 26 #include <ctype.h> 27 27 #include <sys/utsname.h> 28 #include " nogaim.h"28 #include "protocols/nogaim.h" 29 29 #include "msn.h" 30 #include " md5.h"31 #include " sha1.h"30 #include "lib/md5.h" 31 #include "lib/sha1.h" 32 32 #include "soap.h" 33 #include " xmltree.h"33 #include "lib/xmltree.h" 34 34 35 35 static gboolean msn_ns_connected(gpointer data, gint source, b_input_condition cond); -
protocols/msn/sb.c
r5ebff60 r0b9daac 25 25 26 26 #include <ctype.h> 27 #include " nogaim.h"27 #include "protocols/nogaim.h" 28 28 #include "msn.h" 29 #include " md5.h"29 #include "lib/md5.h" 30 30 #include "soap.h" 31 31 #include "invitation.h" -
protocols/msn/soap.c
r5ebff60 r0b9daac 27 27 */ 28 28 29 #include " http_client.h"29 #include "lib/http_client.h" 30 30 #include "soap.h" 31 31 #include "msn.h" 32 32 #include "bitlbee.h" 33 #include " url.h"34 #include " misc.h"35 #include " sha1.h"36 #include " base64.h"37 #include " xmltree.h"33 #include "lib/url.h" 34 #include "lib/misc.h" 35 #include "lib/sha1.h" 36 #include "lib/base64.h" 37 #include "lib/xmltree.h" 38 38 #include <ctype.h> 39 39 #include <errno.h> -
protocols/msn/soap.h
r5ebff60 r0b9daac 40 40 #include <arpa/inet.h> 41 41 #include <unistd.h> 42 #include " nogaim.h"42 #include "protocols/nogaim.h" 43 43 44 44 -
protocols/msn/tables.c
r5ebff60 r0b9daac 24 24 */ 25 25 26 #include " nogaim.h"26 #include "protocols/nogaim.h" 27 27 #include "msn.h" 28 28 -
protocols/nogaim.c
r5ebff60 r0b9daac 35 35 #include <ctype.h> 36 36 37 #include " nogaim.h"37 #include "protocols/nogaim.h" 38 38 39 39 GSList *connections; -
protocols/nogaim.h
r5ebff60 r0b9daac 46 46 47 47 #include "bitlbee.h" 48 #include " account.h"49 #include " proxy.h"48 #include "protocols/account.h" 49 #include "lib/proxy.h" 50 50 #include "query.h" 51 #include " md5.h"52 #include " ft.h"51 #include "lib/md5.h" 52 #include "protocols/ft.h" 53 53 54 54 #define BUDDY_ALIAS_MAXLEN 388 /* because MSN names can be 387 characters */ -
protocols/oscar/admin.c
r5ebff60 r0b9daac 1 #include <aim.h>1 #include "aim.h" 2 2 #include "admin.h" 3 3 -
protocols/oscar/aim.h
r5ebff60 r0b9daac 792 792 int aim_sncmp(const char *a, const char *b); 793 793 794 #include <aim_internal.h>794 #include "aim_internal.h" 795 795 796 796 /* -
protocols/oscar/auth.c
r5ebff60 r0b9daac 4 4 */ 5 5 6 #include <aim.h>7 8 #include " md5.h"6 #include "aim.h" 7 8 #include "lib/md5.h" 9 9 10 10 static int aim_encode_password(const char *password, unsigned char *encoded); -
protocols/oscar/bos.c
r5ebff60 r0b9daac 1 #include <aim.h>1 #include "aim.h" 2 2 #include "bos.h" 3 3 -
protocols/oscar/buddylist.c
r5ebff60 r0b9daac 1 #include <aim.h>1 #include "aim.h" 2 2 #include "buddylist.h" 3 3 -
protocols/oscar/chat.c
r5ebff60 r0b9daac 6 6 */ 7 7 8 #include <aim.h>8 #include "aim.h" 9 9 #include <glib.h> 10 10 #include "info.h" -
protocols/oscar/chatnav.c
r5ebff60 r0b9daac 8 8 */ 9 9 10 #include <aim.h>10 #include "aim.h" 11 11 #include "chatnav.h" 12 12 -
protocols/oscar/conn.c
r5ebff60 r0b9daac 7 7 */ 8 8 9 #include <aim.h>9 #include "aim.h" 10 10 #include "sock.h" 11 11 -
protocols/oscar/icq.c
r5ebff60 r0b9daac 4 4 */ 5 5 6 #include <aim.h>6 #include "aim.h" 7 7 #include "icq.h" 8 8 -
protocols/oscar/im.c
r5ebff60 r0b9daac 20 20 */ 21 21 22 #include <aim.h>22 #include "aim.h" 23 23 #include "im.h" 24 24 #include "info.h" -
protocols/oscar/info.c
r5ebff60 r0b9daac 7 7 */ 8 8 9 #include <aim.h>9 #include "aim.h" 10 10 #include "info.h" 11 11 -
protocols/oscar/misc.c
r5ebff60 r0b9daac 12 12 */ 13 13 14 #include <aim.h>14 #include "aim.h" 15 15 16 16 /* -
protocols/oscar/msgcookie.c
r5ebff60 r0b9daac 12 12 */ 13 13 14 #include <aim.h>14 #include "aim.h" 15 15 #include "info.h" 16 16 -
protocols/oscar/oscar.c
r5ebff60 r0b9daac 31 31 #include <sys/stat.h> 32 32 #include <glib.h> 33 #include " nogaim.h"33 #include "protocols/nogaim.h" 34 34 #include "bitlbee.h" 35 #include " proxy.h"35 #include "lib/proxy.h" 36 36 #include "sock.h" 37 37 -
protocols/oscar/oscar_util.c
r5ebff60 r0b9daac 1 #include <aim.h>1 #include "aim.h" 2 2 #include <ctype.h> 3 3 -
protocols/oscar/rxhandlers.c
r5ebff60 r0b9daac 8 8 */ 9 9 10 #include <aim.h>10 #include "aim.h" 11 11 12 12 struct aim_rxcblist_s { -
protocols/oscar/rxqueue.c
r5ebff60 r0b9daac 7 7 */ 8 8 9 #include <aim.h>9 #include "aim.h" 10 10 11 11 #include <sys/socket.h> -
protocols/oscar/search.c
r5ebff60 r0b9daac 7 7 */ 8 8 9 #include <aim.h>9 #include "aim.h" 10 10 11 11 /* XXX can this be integrated with the rest of the error handling? */ -
protocols/oscar/service.c
r5ebff60 r0b9daac 4 4 */ 5 5 6 #include <aim.h>7 8 #include " md5.h"6 #include "aim.h" 7 8 #include "lib/md5.h" 9 9 10 10 /* Client Online (group 1, subtype 2) */ -
protocols/oscar/snac.c
r5ebff60 r0b9daac 13 13 */ 14 14 15 #include <aim.h>15 #include "aim.h" 16 16 17 17 static aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac); -
protocols/oscar/ssi.c
r5ebff60 r0b9daac 23 23 */ 24 24 25 #include <aim.h>25 #include "aim.h" 26 26 #include "ssi.h" 27 27 -
protocols/oscar/stats.c
r5ebff60 r0b9daac 1 1 2 #include <aim.h>2 #include "aim.h" 3 3 4 4 static int reportinterval(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, -
protocols/oscar/tlv.c
r5ebff60 r0b9daac 1 #include <aim.h>1 #include "aim.h" 2 2 3 3 static void freetlv(aim_tlv_t **oldtlv) -
protocols/oscar/txqueue.c
r5ebff60 r0b9daac 6 6 */ 7 7 8 #include <aim.h>8 #include "aim.h" 9 9 #include "im.h" 10 10 -
protocols/skype/skype.c
r5ebff60 r0b9daac 24 24 #include <poll.h> 25 25 #include <stdio.h> 26 #include <bitlbee.h>27 #include <ssl_client.h>26 #include "bitlbee.h" 27 #include "lib/ssl_client.h" 28 28 29 29 #define SKYPE_DEFAULT_SERVER "localhost" -
protocols/twitter/twitter.c
r5ebff60 r0b9daac 23 23 ****************************************************************************/ 24 24 25 #include " nogaim.h"26 #include " oauth.h"25 #include "protocols/nogaim.h" 26 #include "lib/oauth.h" 27 27 #include "twitter.h" 28 28 #include "twitter_http.h" 29 29 #include "twitter_lib.h" 30 #include " url.h"30 #include "lib/url.h" 31 31 32 32 GSList *twitter_connections = NULL; -
protocols/twitter/twitter.h
r5ebff60 r0b9daac 23 23 ****************************************************************************/ 24 24 25 #include " nogaim.h"25 #include "protocols/nogaim.h" 26 26 27 27 #ifndef _TWITTER_H -
protocols/twitter/twitter_http.c
r5ebff60 r0b9daac 31 31 #include "twitter.h" 32 32 #include "bitlbee.h" 33 #include " url.h"34 #include " misc.h"35 #include " base64.h"36 #include " oauth.h"33 #include "lib/url.h" 34 #include "lib/misc.h" 35 #include "lib/base64.h" 36 #include "lib/oauth.h" 37 37 #include <ctype.h> 38 38 #include <errno.h> -
protocols/twitter/twitter_http.h
r5ebff60 r0b9daac 25 25 #define _TWITTER_HTTP_H 26 26 27 #include " nogaim.h"28 #include " http_client.h"27 #include "protocols/nogaim.h" 28 #include "lib/http_client.h" 29 29 30 30 typedef enum { -
protocols/twitter/twitter_lib.c
r5ebff60 r0b9daac 32 32 #include "twitter.h" 33 33 #include "bitlbee.h" 34 #include " url.h"35 #include " misc.h"36 #include " base64.h"34 #include "lib/url.h" 35 #include "lib/misc.h" 36 #include "lib/base64.h" 37 37 #include "twitter_lib.h" 38 #include " json_util.h"38 #include "lib/json_util.h" 39 39 #include <ctype.h> 40 40 #include <errno.h> -
protocols/twitter/twitter_lib.h
r5ebff60 r0b9daac 26 26 #define _TWITTER_LIB_H 27 27 28 #include " nogaim.h"28 #include "protocols/nogaim.h" 29 29 #include "twitter_http.h" 30 30 -
protocols/yahoo/libyahoo2.c
r5ebff60 r0b9daac 76 76 #include <ctype.h> 77 77 78 #include " sha1.h"79 #include " md5.h"78 #include "lib/sha1.h" 79 #include "lib/md5.h" 80 80 #include "yahoo2.h" 81 81 #include "yahoo_httplib.h" … … 89 89 #endif 90 90 91 #include " base64.h"92 #include " http_client.h"91 #include "lib/base64.h" 92 #include "lib/http_client.h" 93 93 94 94 #ifdef USE_STRUCT_CALLBACKS -
protocols/yahoo/yahoo.c
r5ebff60 r0b9daac 28 28 #include <sys/stat.h> 29 29 #include <ctype.h> 30 #include " nogaim.h"30 #include "protocols/nogaim.h" 31 31 #include "yahoo2.h" 32 32 #include "yahoo2_callbacks.h" -
storage_xml.c
r5ebff60 r0b9daac 26 26 #define BITLBEE_CORE 27 27 #include "bitlbee.h" 28 #include " base64.h"29 #include " arc.h"30 #include " md5.h"31 #include " xmltree.h"28 #include "lib/base64.h" 29 #include "lib/arc.h" 30 #include "lib/md5.h" 31 #include "lib/xmltree.h" 32 32 33 33 #include <glib/gstdio.h> -
tests/check_arc.c
r5ebff60 r0b9daac 5 5 #include <string.h> 6 6 #include <stdio.h> 7 #include " arc.h"7 #include "lib/arc.h" 8 8 9 9 char *password = "ArcVier"; -
tests/check_md5.c
r5ebff60 r0b9daac 5 5 #include <string.h> 6 6 #include <stdio.h> 7 #include " md5.h"7 #include "lib/md5.h" 8 8 9 9 /* From RFC 1321 */ -
tests/check_nick.c
r5ebff60 r0b9daac 6 6 #include "irc.h" 7 7 #include "set.h" 8 #include " misc.h"8 #include "lib/misc.h" 9 9 #include "bitlbee.h" 10 10 -
tests/check_util.c
r5ebff60 r0b9daac 6 6 #include "irc.h" 7 7 #include "set.h" 8 #include " misc.h"9 #include " url.h"8 #include "lib/misc.h" 9 #include "lib/url.h" 10 10 11 11 START_TEST(test_strip_linefeed){ -
unix.c
r5ebff60 r0b9daac 26 26 #include "bitlbee.h" 27 27 28 #include " arc.h"29 #include " base64.h"28 #include "lib/arc.h" 29 #include "lib/base64.h" 30 30 #include "commands.h" 31 31 #include "protocols/nogaim.h" 32 32 #include "help.h" 33 33 #include "ipc.h" 34 #include " md5.h"35 #include " misc.h"34 #include "lib/md5.h" 35 #include "lib/misc.h" 36 36 #include <signal.h> 37 37 #include <unistd.h>
Note: See TracChangeset
for help on using the changeset viewer.