started splitting out transport code
[sahlberg/ctdb.git] / tcp / ctdb_tcp.h
1 /* 
2    ctdb database library
3
4    Copyright (C) Andrew Tridgell  2006
5
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2 of the License, or (at your option) any later version.
10
11    This library 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 GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with this library; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21
22 /* ctdb_tcp main state */
23 struct ctdb_tcp {
24         int listen_fd;
25 };
26
27 /*
28   state associated with an incoming connection
29 */
30 struct ctdb_incoming {
31         struct ctdb_context *ctdb;
32         int fd;
33 };
34
35 /*
36   state associated with one tcp node
37 */
38 struct ctdb_tcp_node {
39         int fd;
40 };
41