Migrated send_keepalive_job_t to INIT/METHOD macros

This commit is contained in:
Andreas Steffen
2011-02-10 08:28:19 +01:00
parent bcf071d9d5
commit 51d6a0d44a
@@ -38,19 +38,15 @@ struct private_send_keepalive_job_t {
ike_sa_id_t *ike_sa_id;
};
/**
* Implements job_t.destroy.
*/
static void destroy(private_send_keepalive_job_t *this)
METHOD(job_t, destroy, void,
private_send_keepalive_job_t *this)
{
this->ike_sa_id->destroy(this->ike_sa_id);
free(this);
}
/**
* Implementation of job_t.execute.
*/
static void execute(private_send_keepalive_job_t *this)
METHOD(job_t, execute, void,
private_send_keepalive_job_t *this)
{
ike_sa_t *ike_sa;
@@ -69,14 +65,17 @@ static void execute(private_send_keepalive_job_t *this)
*/
send_keepalive_job_t *send_keepalive_job_create(ike_sa_id_t *ike_sa_id)
{
private_send_keepalive_job_t *this = malloc_thing(private_send_keepalive_job_t);
private_send_keepalive_job_t *this;
/* interface functions */
this->public.job_interface.execute = (void (*) (job_t *)) execute;
this->public.job_interface.destroy = (void (*) (job_t *)) destroy;
/* private variables */
this->ike_sa_id = ike_sa_id->clone(ike_sa_id);
INIT(this,
.public = {
.job_interface = {
.execute = _execute,
.destroy = _destroy,
},
},
.ike_sa_id = ike_sa_id->clone(ike_sa_id),
);
return &this->public;
}