2 * Copyright (c) 2003-2005 MontaVista Software, Inc.
3 * Copyright (c) 2006-2007 Red Hat, Inc.
7 * Author: Steven Dake (sdake@redhat.com)
9 * This software licensed under BSD license, the text of which follows:
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions are met:
14 * - Redistributions of source code must retain the above copyright notice,
15 * this list of conditions and the following disclaimer.
16 * - Redistributions in binary form must reproduce the above copyright notice,
17 * this list of conditions and the following disclaimer in the documentation
18 * and/or other materials provided with the distribution.
19 * - Neither the name of the MontaVista Software, Inc. nor the names of its
20 * contributors may be used to endorse or promote products derived from this
21 * software without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
33 * THE POSSIBILITY OF SUCH DAMAGE.
35 #ifndef TOTEMSRP_H_DEFINED
36 #define TOTEMSRP_H_DEFINED
41 typedef unsigned int totemsrp_handle
;
44 * Totem Single Ring Protocol
45 * depends on poll abstraction, POSIX, IPV4
49 * Create a protocol instance
51 int totemsrp_initialize (
52 poll_handle poll_handle
,
53 totemsrp_handle
*handle
,
54 struct totem_config
*totem_config
,
60 int endian_conversion_required
),
62 enum totem_configuration_type configuration_type
,
63 unsigned int *member_list
, int member_list_entries
,
64 unsigned int *left_list
, int left_list_entries
,
65 unsigned int *joined_list
, int joined_list_entries
,
66 struct memb_ring_id
*ring_id
));
68 void totemsrp_finalize (totemsrp_handle handle
);
74 totemsrp_handle handle
,
80 * Return number of available messages that can be queued
82 int totemsrp_avail (totemsrp_handle handle
);
84 int totemsrp_callback_token_create (
85 totemsrp_handle handle
,
87 enum totem_callback_token_type type
,
89 int (*callback_fn
) (enum totem_callback_token_type type
, void *),
92 void totemsrp_callback_token_destroy (
93 totemsrp_handle handle
,
96 int totemsrp_new_msg_signal (totemsrp_handle handle
);
98 extern void totemsrp_net_mtu_adjust (struct totem_config
*totem_config
);
100 extern int totemsrp_ifaces_get (
101 totemsrp_handle handle
,
103 struct totem_ip_address
*interfaces
,
105 unsigned int *iface_count
);
107 extern int totemsrp_my_nodeid_get (
108 totemsrp_handle handle
);
110 extern int totemsrp_my_family_get (
111 totemsrp_handle handle
);
113 extern int totemsrp_ring_reenable (
114 totemsrp_handle handle
);
116 #endif /* TOTEMSRP_H_DEFINED */