]> git.ipfire.org Git - thirdparty/strongswan.git/blame - programs/charon/charon/sa/states/ike_sa_established.h
- import of strongswan-2.7.0
[thirdparty/strongswan.git] / programs / charon / charon / sa / states / ike_sa_established.h
CommitLineData
c7dd2a7b
MW
1/**
2 * @file ike_sa_established.h
3 *
df3c59d0 4 * @brief Interface of ike_sa_established_t.
c7dd2a7b
MW
5 *
6 */
7
8/*
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
11 *
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>.
16 *
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
20 * for more details.
21 */
22
23#ifndef IKE_SA_ESTABLISHED_H_
24#define IKE_SA_ESTABLISHED_H_
25
26#include <sa/states/state.h>
27#include <sa/ike_sa.h>
28
5796aa16
MW
29typedef struct ike_sa_established_t ike_sa_established_t;
30
c7dd2a7b 31/**
df3c59d0 32 * @brief This class represents an the state of an established
c7dd2a7b 33 * IKE_SA.
df3c59d0 34 *
283dbcc5
MW
35 * @b Constructors:
36 * - ike_sa_established_create()
37 *
38 * @todo Implement handling of CREATE_CHILD_SA requests
39 *
40 * @todo Implement initialization of CREATE_CHILD_SA requests
41 *
42 * @todo Implement handling of any other message
43 *
df3c59d0 44 * @ingroup states
c7dd2a7b 45 */
5796aa16 46struct ike_sa_established_t {
c7dd2a7b
MW
47 /**
48 * methods of the state_t interface
49 */
50 state_t state_interface;
51
52};
53
54/**
283dbcc5 55 * @brief Constructor of class ike_sa_established_t
c7dd2a7b 56 *
df3c59d0
MW
57 * @param ike_sa assigned ike_sa
58 * @return created ike_sa_established_t object
59 *
60 * @ingroup states
c7dd2a7b
MW
61 */
62ike_sa_established_t *ike_sa_established_create(protected_ike_sa_t *ike_sa);
63
64#endif /*IKE_SA_ESTABLISHED_H_*/