- Timestamp:
- 2010-08-07T16:33:02Z (14 years ago)
- Branches:
- master
- Children:
- 7b87539
- Parents:
- 289bd2d
- Location:
- lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/Makefile
r289bd2d rdaae10f 15 15 objects = arc.o base64.o $(EVENT_HANDLER) ftutil.o http_client.o ini.o md5.o misc.o oauth.o proxy.o sha1.o $(SSL_CLIENT) url.o xmltree.o 16 16 17 CFLAGS += -Wall18 17 LFLAGS += -r 19 18 -
lib/md5.h
r289bd2d rdaae10f 27 27 #include <sys/types.h> 28 28 #include <gmodule.h> 29 #if(__sun) 30 #include <inttypes.h> 31 #else 29 32 #include <stdint.h> 33 #endif 30 34 31 35 typedef uint8_t md5_byte_t; -
lib/oauth.c
r289bd2d rdaae10f 60 60 { 61 61 g_snprintf( (gchar*) key, HMAC_BLOCK_SIZE + 1, "%s&%s", 62 oi->sp->consumer_secret, oi->token_secret ? : "" );62 oi->sp->consumer_secret, oi->token_secret ? oi->token_secret : "" ); 63 63 } 64 64 -
lib/sha1.h
r289bd2d rdaae10f 24 24 #define _SHA1_H_ 25 25 26 #if(__sun) 27 #include <inttypes.h> 28 #else 26 29 #include <stdint.h> 30 #endif 27 31 #include <gmodule.h> 28 32 -
lib/xmltree.c
r289bd2d rdaae10f 215 215 216 216 if( node == NULL ) 217 return xt_cleanup( xt, xt->root, depth ); 217 { 218 xt_cleanup( xt, xt->root, depth ); 219 return; 220 } 218 221 219 222 if( node->flags & XT_SEEN && node == xt->root )
Note: See TracChangeset
for help on using the changeset viewer.