100l, last patch broke window resizing with xv and xvmc.
[mplayer/glamo.git] / stream / tcp.h
blob77aac33acc286ad5d9ed4457143e54f72f1ad890
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>).
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.
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.
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
22 #ifndef _TCP_H_
23 #define _TCP_H_
25 /* Connect to a server using a TCP connection */
26 int connect2Server (char *host, int port, int verb);
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 */
32 #endif /* _TCP_H_ */