]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/charon/plugins/ha_sync/ha_sync_plugin.h
Try to send HA sync messages synchronously
[thirdparty/strongswan.git] / src / charon / plugins / ha_sync / ha_sync_plugin.h
1 /*
2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
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 ha_sync ha_sync
18 * @ingroup cplugins
19 *
20 * @defgroup ha_sync_plugin ha_sync_plugin
21 * @{ @ingroup ha_sync
22 */
23
24 #ifndef HA_SYNC_PLUGIN_H_
25 #define HA_SYNC_PLUGIN_H_
26
27 #include <plugins/plugin.h>
28
29 /**
30 * UDP port we use for communication
31 */
32 #define HA_SYNC_PORT 4510
33
34 typedef struct ha_sync_plugin_t ha_sync_plugin_t;
35
36 /**
37 * Plugin to synchronize state in a high availability cluster.
38 */
39 struct ha_sync_plugin_t {
40
41 /**
42 * implements plugin interface
43 */
44 plugin_t plugin;
45 };
46
47 /**
48 * Create a ha_sync_plugin instance.
49 */
50 plugin_t *plugin_create();
51
52 #endif /* HA_SYNC_PLUGIN_H_ @}*/