]> err.no Git - backuppcd/blob - net.h
Import gnulib stuff
[backuppcd] / net.h
1 #ifndef _RSK_NET_H
2 #define _RSK_NET_H
3
4 /*
5  * Copyright (C) 2005  Roy Keene
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20  *
21  * Author Information
22  *      Roy Keene
23  *      Planning Systems Inc
24  *      Slidell, LA
25  *      backuppcd-bugs@psislidell.com
26  */
27
28 #include "compat.h"
29
30 #ifdef HAVE_SYS_TYPES_H
31 #include <sys/types.h>
32 #endif
33 #ifdef HAVE_UNISTD_H
34 #include <unistd.h>
35 #endif
36
37 int net_listen(const int port);
38 int net_connect_tcp(const char *host, const int port);
39 int net_close(const int sockid);
40
41 #endif