Annotation of embedaddon/strongswan/src/libcharon/plugins/unity/unity_handler.h, revision 1.1.1.1
1.1 misho 1: /*
2: * Copyright (C) 2012 Martin Willi
3: * Copyright (C) 2012 revosec AG
4: *
5: * This program is free software; you can redistribute it and/or modify it
6: * under the terms of the GNU General Public License as published by the
7: * Free Software Foundation; either version 2 of the License, or (at your
8: * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9: *
10: * This program is distributed in the hope that it will be useful, but
11: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13: * for more details.
14: */
15:
16: /**
17: * @defgroup unity_handler unity_handler
18: * @{ @ingroup unity
19: */
20:
21: #ifndef UNITY_HANDLER_H_
22: #define UNITY_HANDLER_H_
23:
24: #include <sa/ike_sa_id.h>
25: #include <attributes/attribute_handler.h>
26:
27: typedef struct unity_handler_t unity_handler_t;
28:
29: /**
30: * Cisco Unity attribute handling.
31: */
32: struct unity_handler_t {
33:
34: /**
35: * Implements attribute_handler_t.
36: */
37: attribute_handler_t handler;
38:
39: /**
40: * Create an enumerator over Split-Include attributes received for an IKE_SA.
41: *
42: * @param id IKE_SA ID to get Split-Includes for
43: * @return enumerator over traffic_selector_t*
44: */
45: enumerator_t* (*create_include_enumerator)(unity_handler_t *this,
46: ike_sa_id_t *id);
47:
48: /**
49: * Destroy a unity_handler_t.
50: */
51: void (*destroy)(unity_handler_t *this);
52: };
53:
54: /**
55: * Create a unity_handler instance.
56: */
57: unity_handler_t *unity_handler_create();
58:
59: #endif /** UNITY_HANDLER_H_ @}*/
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>