2 * @file ike_sa_established.c
4 * @brief Implementation of ike_sa_established_t.
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 "ike_sa_established.h"
25 #include <utils/allocator.h>
28 typedef struct private_ike_sa_established_t private_ike_sa_established_t
;
31 * Private data of a ike_sa_established_t object.
33 struct private_ike_sa_established_t
{
35 * methods of the state_t interface
37 ike_sa_established_t
public;
42 protected_ike_sa_t
*ike_sa
;
47 * Implements state_t.get_state
49 static status_t
process_message(private_ike_sa_established_t
*this, message_t
*message
)
55 * Implements state_t.get_state
57 static ike_sa_state_t
get_state(private_ike_sa_established_t
*this)
59 return IKE_SA_ESTABLISHED
;
63 * Implements state_t.get_state
65 static void destroy(private_ike_sa_established_t
*this)
71 * Described in header.
73 ike_sa_established_t
*ike_sa_established_create(protected_ike_sa_t
*ike_sa
)
75 private_ike_sa_established_t
*this = allocator_alloc_thing(private_ike_sa_established_t
);
77 /* interface functions */
78 this->public.state_interface
.process_message
= (status_t (*) (state_t
*,message_t
*)) process_message
;
79 this->public.state_interface
.get_state
= (ike_sa_state_t (*) (state_t
*)) get_state
;
80 this->public.state_interface
.destroy
= (void (*) (state_t
*)) destroy
;
83 this->ike_sa
= ike_sa
;
85 return &(this->public);