comparison stream/tcp.h @ 19335:2a9d669e5ff6

isolated tcp socket code from network.c to a dedicated file
author ben
date Sat, 05 Aug 2006 10:30:06 +0000
parents
children 3f0d00abc073
comparison
equal deleted inserted replaced
19334:c95db0988ded 19335:2a9d669e5ff6
1 /*
2 * Copyright (C) 2001 Bertrand BAUDET, 2006 Benjamin Zores
3 * Network helpers for TCP connections
4 * (originally borrowed from network.c,
5 * by Bertrand BAUDET <bertrand_baudet@yahoo.com>).
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (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 Foundation,
19 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #ifndef _TCP_H_
23 #define _TCP_H_
24
25 /* Connect to a server using a TCP connection */
26 int connect2Server (char *host, int port, int verb);
27
28 #define TCP_ERROR_TIMEOUT -3 /* connection timeout */
29 #define TCP_ERROR_FATAL -2 /* unable to resolve name */
30 #define TCP_ERROR_PORT -1 /* unable to connect to a particular port */
31
32 #endif /* _TCP_H_ */