- Added DEFLATE compression support as per RFC3749 (requires zlib)

This commit is contained in:
Paul Bakker 2012-07-03 13:30:23 +00:00
parent 4f9a7bb7fd
commit 2770fbd651
10 changed files with 285 additions and 14 deletions

View file

@ -15,6 +15,11 @@ ifdef WINDOWS
LDFLAGS += -lws2_32
endif
# Zlib shared library extensions:
ifdef ZLIB
LDFLAGS += -lz
endif
APPS = aes/aescrypt2 aes/crypt_and_hash \
hash/hello hash/generic_sum \
hash/md5sum hash/sha1sum \

View file

@ -151,7 +151,7 @@ int my_ciphersuites[] =
0
};
#define DEBUG_LEVEL 0
#define DEBUG_LEVEL 5
void my_debug( void *ctx, int level, const char *str )
{