3 * Copyright (c) 2002 Fabrice Bellard
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav 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 GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/parseutils.h"
26 #include "os_support.h"
33 typedef struct TCPContext {
37 /* return non zero if error */
38 static int tcp_open(URLContext *h, const char *uri, int flags)
40 struct addrinfo hints, *ai, *cur_ai;
42 TCPContext *s = h->priv_data;
43 int listen_socket = 0;
49 char hostname[1024],proto[1024],path[1024];
52 av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
53 &port, path, sizeof(path), uri);
54 if (strcmp(proto,"tcp") || port <= 0 || port >= 65536)
55 return AVERROR(EINVAL);
59 if (av_find_info_tag(buf, sizeof(buf), "listen", p))
61 if (av_find_info_tag(buf, sizeof(buf), "timeout", p)) {
62 timeout = strtol(buf, NULL, 10);
65 memset(&hints, 0, sizeof(hints));
66 hints.ai_family = AF_UNSPEC;
67 hints.ai_socktype = SOCK_STREAM;
68 snprintf(portstr, sizeof(portstr), "%d", port);
69 ret = getaddrinfo(hostname, portstr, &hints, &ai);
71 av_log(h, AV_LOG_ERROR,
72 "Failed to resolve hostname %s: %s\n",
73 hostname, gai_strerror(ret));
81 fd = socket(cur_ai->ai_family, cur_ai->ai_socktype, cur_ai->ai_protocol);
87 ret = bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
89 fd1 = accept(fd, NULL, NULL);
92 ff_socket_nonblock(fd, 1);
95 ff_socket_nonblock(fd, 1);
96 ret = connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
100 struct pollfd p = {fd, POLLOUT, 0};
102 if (ret == AVERROR(EINTR)) {
103 if (ff_check_interrupt(&h->interrupt_callback)) {
109 if (ret != AVERROR(EINPROGRESS) &&
110 ret != AVERROR(EAGAIN))
113 /* wait until we are connected or until abort */
115 if (ff_check_interrupt(&h->interrupt_callback)) {
119 ret = poll(&p, 1, 100);
124 ret = AVERROR(ETIMEDOUT);
128 optlen = sizeof(ret);
129 getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen);
131 av_log(h, AV_LOG_ERROR,
132 "TCP connection to %s:%d failed: %s\n",
133 hostname, port, strerror(ret));
144 if (cur_ai->ai_next) {
145 /* Retry with the next sockaddr */
146 cur_ai = cur_ai->ai_next;
158 static int tcp_read(URLContext *h, uint8_t *buf, int size)
160 TCPContext *s = h->priv_data;
163 if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
164 ret = ff_network_wait_fd(s->fd, 0);
168 ret = recv(s->fd, buf, size, 0);
169 return ret < 0 ? ff_neterrno() : ret;
172 static int tcp_write(URLContext *h, const uint8_t *buf, int size)
174 TCPContext *s = h->priv_data;
177 if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
178 ret = ff_network_wait_fd(s->fd, 1);
182 ret = send(s->fd, buf, size, 0);
183 return ret < 0 ? ff_neterrno() : ret;
186 static int tcp_close(URLContext *h)
188 TCPContext *s = h->priv_data;
193 static int tcp_get_file_handle(URLContext *h)
195 TCPContext *s = h->priv_data;
199 URLProtocol ff_tcp_protocol = {
201 .url_open = tcp_open,
202 .url_read = tcp_read,
203 .url_write = tcp_write,
204 .url_close = tcp_close,
205 .url_get_file_handle = tcp_get_file_handle,
206 .priv_data_size = sizeof(TCPContext),
207 .flags = URL_PROTOCOL_FLAG_NETWORK,