Imported Upstream version 3.1.0
[debian/amanda] / common-src / directtcp.h
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 2008,2009 Zmanda, Inc.  All Rights Reserved.
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 version 2 as published
7  * by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17  *
18  * Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
19  * Sunnyvale, CA 94085, USA, or: http://www.zmanda.com
20  */
21
22 #ifndef DIRECTTCP_H
23 #define DIRECTTCP_H
24
25 #include <glib.h>
26
27 /* A combination of IP address (expressed as an integer in host byte
28  * order) and port.  These are commonly seen in arrays terminated by
29  * a {0,0}.  Note that, right now, only IPv4 addresses are supported
30  * (since this is all that NDMP supports). */
31 typedef struct DirectTCPAddr_ {
32     guint32 ipv4;
33     guint16 port;
34 } DirectTCPAddr;
35
36 #endif /* DIRECTTCP_H */