4 Copyright (C) Andrew Tridgell 2006
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
23 /* ctdb_tcp main state */
25 struct ctdb_context
*ctdb
;
30 state associated with an incoming connection
32 struct ctdb_incoming
{
33 struct ctdb_context
*ctdb
;
35 struct ctdb_queue
*queue
;
39 state associated with one tcp node
41 struct ctdb_tcp_node
{
43 struct ctdb_queue
*out_queue
;
44 struct fd_event
*connect_fde
;
45 struct timed_event
*connect_te
;
49 /* prototypes internal to tcp transport */
50 int ctdb_tcp_queue_pkt(struct ctdb_node
*node
, uint8_t *data
, uint32_t length
);
51 int ctdb_tcp_listen(struct ctdb_context
*ctdb
);
52 void ctdb_tcp_node_connect(struct event_context
*ev
, struct timed_event
*te
,
53 struct timeval t
, void *private_data
);
54 void ctdb_tcp_read_cb(uint8_t *data
, size_t cnt
, void *args
);
55 void ctdb_tcp_tnode_cb(uint8_t *data
, size_t cnt
, void *private_data
);
56 void ctdb_tcp_stop_connection(struct ctdb_node
*node
);
58 #define CTDB_TCP_ALIGNMENT 8
60 #endif /* _CTDB_TCP_H */