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"
26 #include <encoding/payloads/delete_payload.h>
29 typedef struct private_ike_sa_established_t private_ike_sa_established_t
;
32 * Private data of a ike_sa_established_t object.
34 struct private_ike_sa_established_t
{
36 * methods of the state_t interface
38 ike_sa_established_t
public;
43 protected_ike_sa_t
*ike_sa
;
46 * Assigned logger. Use logger of IKE_SA.
53 * Implements state_t.get_state
55 static status_t
process_message(private_ike_sa_established_t
*this, message_t
*message
)
61 * Implementation of state_t.get_state.
63 static ike_sa_state_t
get_state(private_ike_sa_established_t
*this)
65 return IKE_SA_ESTABLISHED
;
69 * Implementation of state_t.get_state
71 static void destroy(private_ike_sa_established_t
*this)
77 * Described in header.
79 ike_sa_established_t
*ike_sa_established_create(protected_ike_sa_t
*ike_sa
)
81 private_ike_sa_established_t
*this = malloc_thing(private_ike_sa_established_t
);
83 /* interface functions */
84 this->public.state_interface
.process_message
= (status_t (*) (state_t
*,message_t
*)) process_message
;
85 this->public.state_interface
.get_state
= (ike_sa_state_t (*) (state_t
*)) get_state
;
86 this->public.state_interface
.destroy
= (void (*) (state_t
*)) destroy
;
89 this->ike_sa
= ike_sa
;
90 this->logger
= logger_manager
->get_logger(logger_manager
, IKE_SA
);
92 return &(this->public);