- 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:
- lib
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.