request.c 668 Bytes
#include <stdlib.h>
#include <stdarg.h>

#include "class.h"
#include "interface/class.h"

#include "http/request.h"

static
void
_free(void ** data)
{
	if (NULL != *data) {
		free(*data);
	}
}

static
void
ctor(void * _this, va_list * params) {}

static
void
dtor(void * _this)
{
	HttpRequest this = _this;
	int         i;

	_free((void **)&(this->version));
	_free((void **)&(this->uri));
	_free((void **)&(this->method));

	for (i=0; i<128; i++) {
		if (NULL == (this->header)[i]) break;
		delete(&(this->header)[i]);
	}

	_free((void **)&(this->body));
} 

INIT_IFACE(Class, ctor, dtor, NULL);
CREATE_CLASS(HttpRequest, NULL, IFACE(Class));

// vim: set ts=4 sw=4: