2 * Copyright (C) 2007 Martin Willi
3 * Hochschule fuer Technik Rapperswil
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 child_delete child_delete
21 #ifndef CHILD_DELETE_H_
22 #define CHILD_DELETE_H_
24 typedef struct child_delete_t child_delete_t
;
27 #include <sa/ike_sa.h>
29 #include <sa/child_sa.h>
32 * Task of type child_delete, delete a CHILD_SA.
34 struct child_delete_t
{
37 * Implements the task_t interface
42 * Get the CHILD_SA to delete by this task.
46 child_sa_t
* (*get_child
) (child_delete_t
*this);
50 * Create a new child_delete task.
52 * @param ike_sa IKE_SA this task works for
53 * @param protocol protocol of CHILD_SA to delete, PROTO_NONE as responder
54 * @param spi inbound SPI of CHILD_SA to delete
55 * @return child_delete task to handle by the task_manager
57 child_delete_t
*child_delete_create(ike_sa_t
*ike_sa
, protocol_id_t protocol
,
60 #endif /** CHILD_DELETE_H_ @}*/