- split up in libstrong, charon, stroke, testing done

- new leak detective with malloc hook in library
  - useable, but needs improvements
- logger_manager has now a single instance per library
  - allows use of loggers from any linking prog
- a LOT of other things
This commit is contained in:
Martin Willi
2006-04-10 08:07:38 +00:00
parent 6862128151
commit 5113680f95
116 changed files with 1399 additions and 1610 deletions
+1 -2
View File
@@ -26,7 +26,6 @@
#include <daemon.h>
#include <network/packet.h>
#include <utils/allocator.h>
#include <utils/logger_manager.h>
@@ -41,7 +40,7 @@ void test_packet(protected_tester_t *tester)
char *string_to_copy = "aha, soso";
data.len = strlen(string_to_copy) + 1;
data.ptr = allocator_alloc(data.len);
data.ptr = malloc(data.len);
memcpy(data.ptr, string_to_copy, data.len);
packet->set_data(packet, data);