Move input options to option struct
[mplayer.git] / stream / tcp.h
blobbb3b1180254e932d3b3149b685509450d4412965
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 MPLAYER_TCP_H
23 #define MPLAYER_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 /* MPLAYER_TCP_H */