14376df6719385af898d2b110ccf0a0f968cf2e7
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 ike_dpd ike_dpd
24 typedef struct ike_dpd_t ike_dpd_t
;
27 #include <sa/ike_sa.h>
28 #include <sa/tasks/task.h>
31 * Task of type ike_dpd, detects dead peers.
33 * The DPD task actually does nothing, as a DPD has no associated payloads.
38 * Implements the task_t interface
44 * Create a new ike_dpd task.
46 * @param initiator TRUE if thask is the original initiator
47 * @return ike_dpd task to handle by the task_manager
49 ike_dpd_t
*ike_dpd_create(bool initiator
);
51 #endif /** IKE_DPD_H_ @}*/