Migrated roam_job_t to INIT/METHOD macros

This commit is contained in:
Andreas Steffen
2011-02-10 08:22:57 +01:00
parent ac226a1a60
commit e76d12bb9e
+14 -13
View File
@@ -38,18 +38,14 @@ struct private_roam_job_t {
bool address;
};
/**
* Implements job_t.destroy.
*/
static void destroy(private_roam_job_t *this)
METHOD(job_t, destroy, void,
private_roam_job_t *this)
{
free(this);
}
/**
* Implementation of job_t.execute.
*/
static void execute(private_roam_job_t *this)
METHOD(job_t, execute, void,
private_roam_job_t *this)
{
ike_sa_t *ike_sa;
linked_list_t *list;
@@ -94,12 +90,17 @@ static void execute(private_roam_job_t *this)
*/
roam_job_t *roam_job_create(bool address)
{
private_roam_job_t *this = malloc_thing(private_roam_job_t);
private_roam_job_t *this;
this->public.job_interface.execute = (void (*) (job_t *)) execute;
this->public.job_interface.destroy = (void (*) (job_t *)) destroy;
this->address = address;
INIT(this,
.public = {
.job_interface = {
.execute = _execute,
.destroy = _destroy,
},
},
.address = address,
);
return &this->public;
}