2 * @file initiator_init.c
4 * @brief Start state of a IKE_SA as initiator
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 #include "initiator_init.h"
25 #include "../utils/allocator.h"
28 * Private data of a initiator_init_t object.
31 typedef struct private_initiator_init_s private_initiator_init_t
;
32 struct private_initiator_init_s
{
34 * methods of the state_t interface
36 initiator_init_t
public;
40 static status_t
initiate_connection (private_initiator_init_t
*this, char *name
, state_t
**new_state
)
46 * Implements state_t.get_state
48 static status_t
process_message(private_initiator_init_t
*this, message_t
*message
, state_t
**new_state
)
50 *new_state
= (state_t
*) this;
55 * Implements state_t.get_state
57 static ike_sa_state_t
get_state(private_initiator_init_t
*this)
59 return INITIATOR_INIT
;
63 * Implements state_t.get_state
65 static status_t
destroy(private_initiator_init_t
*this)
72 * Described in header.
74 initiator_init_t
*initiator_init_create()
76 private_initiator_init_t
*this = allocator_alloc_thing(private_initiator_init_t
);
83 /* interface functions */
84 this->public.state_interface
.process_message
= (status_t (*) (state_t
*,message_t
*,state_t
**)) process_message
;
85 this->public.state_interface
.get_state
= (ike_sa_state_t (*) (state_t
*)) get_state
;
86 this->public.state_interface
.destroy
= (status_t (*) (state_t
*)) destroy
;
88 /* public functions */
89 this->public.initiate_connection
= (status_t (*)(initiator_init_t
*, char *, state_t
**)) initiate_connection
;
91 return &(this->public);