]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/charon/sa/tasks/ike_config.h
restructured file layout
[thirdparty/strongswan.git] / src / charon / sa / tasks / ike_config.h
CommitLineData
c60c7694
MW
1/**
2 * @file ike_config.h
3 *
4 * @brief Interface ike_config_t.
5 *
6 */
7
8/*
9 * Copyright (C) 2007 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_CONFIG_H_
24#define IKE_CONFIG_H_
25
26typedef struct ike_config_t ike_config_t;
27
28#include <library.h>
29#include <sa/ike_sa.h>
30#include <sa/tasks/task.h>
c60c7694
MW
31
32/**
33 * @brief Task of type IKE_CONFIG, sets up a virtual IP and other
34 * configurations for an IKE_SA.
35 *
36 * @b Constructors:
37 * - ike_config_create()
38 *
39 * @ingroup tasks
40 */
41struct ike_config_t {
42
43 /**
44 * Implements the task_t interface
45 */
46 task_t task;
47};
48
49/**
50 * @brief Create a new ike_config task.
51 *
52 * @param ike_sa IKE_SA this task works for
e0fe7651 53 * @param initiator TRUE for initiator
c60c7694
MW
54 * @return ike_config task to handle by the task_manager
55 */
e0fe7651 56ike_config_t *ike_config_create(ike_sa_t *ike_sa, bool initiator);
c60c7694
MW
57
58#endif /* IKE_CONFIG_H_ */