2 * Copyright (C) 2012 Martin Willi
3 * Copyright (C) 2012 revosec AG
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>.
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
17 * @defgroup unity_handler unity_handler
21 #ifndef UNITY_HANDLER_H_
22 #define UNITY_HANDLER_H_
24 #include <attributes/attribute_handler.h>
26 typedef struct unity_handler_t unity_handler_t
;
29 * Cisco Unity attribute handling.
31 struct unity_handler_t
{
34 * Implements attribute_handler_t.
36 attribute_handler_t handler
;
39 * Create an enumerator over Split-Include attributes received for an IKE_SA.
41 * @param id IKE_SA unique ID to get Split-Includes for
42 * @return enumerator over traffic_selector_t*
44 enumerator_t
* (*create_include_enumerator
)(unity_handler_t
*this,
48 * Destroy a unity_handler_t.
50 void (*destroy
)(unity_handler_t
*this);
54 * Create a unity_handler instance.
56 unity_handler_t
*unity_handler_create();
58 #endif /** UNITY_HANDLER_H_ @}*/