2 * Copyright (C) 2008 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 ha_sync_socket ha_sync_socket
21 #ifndef HA_SYNC_SOCKET_H_
22 #define HA_SYNC_SOCKET_H_
24 #include "ha_sync_message.h"
26 #include <sa/ike_sa.h>
29 * UDP port we use for communication
31 #define HA_SYNC_PORT 4510
33 typedef struct ha_sync_socket_t ha_sync_socket_t
;
36 * Socket to send/received SA synchronization data
38 struct ha_sync_socket_t
{
41 * Push synchronization information to the responsible node.
43 * @param message message to send, gets destroyed by push()
45 void (*push
)(ha_sync_socket_t
*this, ha_sync_message_t
*message
);
48 * Pull synchronization information from a peer we are responsible.
50 * @return received message
52 ha_sync_message_t
*(*pull
)(ha_sync_socket_t
*this);
55 * Check if an IKE_SA is used for exchanging sync messages.
57 * @param ike_Sa ike_sa to check
58 * @return TRUE if IKE_SA is used to secure sync messages
60 bool (*is_sync_sa
)(ha_sync_socket_t
*this, ike_sa_t
*ike_sa
);
63 * Destroy a ha_sync_socket_t.
65 void (*destroy
)(ha_sync_socket_t
*this);
69 * Create a ha_sync_socket instance.
71 ha_sync_socket_t
*ha_sync_socket_create();
73 #endif /* HA_SYNC_SOCKET_ @}*/