- 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
+5 -7
View File
@@ -23,8 +23,6 @@
#include "packet.h"
#include <utils/allocator.h>
typedef struct private_packet_t private_packet_t;
@@ -107,7 +105,7 @@ static chunk_t get_data(private_packet_t *this)
*/
static void set_data(private_packet_t *this, chunk_t data)
{
allocator_free(this->data.ptr);
free(this->data.ptr);
this->data = data;
}
@@ -124,8 +122,8 @@ static void destroy(private_packet_t *this)
{
this->destination->destroy(this->destination);
}
allocator_free(this->data.ptr);
allocator_free(this);
free(this->data.ptr);
free(this);
}
/**
@@ -156,7 +154,7 @@ static packet_t *clone(private_packet_t *this)
/* only clone existing chunks :-) */
if (this->data.ptr != NULL)
{
other->data.ptr = allocator_clone_bytes(this->data.ptr,this->data.len);
other->data.ptr = clalloc(this->data.ptr,this->data.len);
other->data.len = this->data.len;
}
else
@@ -172,7 +170,7 @@ static packet_t *clone(private_packet_t *this)
*/
packet_t *packet_create()
{
private_packet_t *this = allocator_alloc_thing(private_packet_t);
private_packet_t *this = malloc_thing(private_packet_t);
this->public.set_data = (void(*) (packet_t *,chunk_t)) set_data;
this->public.get_data = (chunk_t(*) (packet_t *)) get_data;