From 9835abb6d63fb07613994ae90e72fef758149408 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sat, 1 Jun 2013 19:38:57 +0200 Subject: network: uniform ff_listen_bind and ff_listen_connect Document the functions and have both use a millisecond timeout and check for interrupt. --- libavformat/tcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/tcp.c') diff --git a/libavformat/tcp.c b/libavformat/tcp.c index fff9e1fcd4..67aebdfcb8 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -92,13 +92,13 @@ static int tcp_open(URLContext *h, const char *uri, int flags) if (listen_socket) { if ((fd = ff_listen_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen, - listen_timeout)) < 0) { + listen_timeout, h)) < 0) { ret = fd; goto fail1; } } else { if ((ret = ff_listen_connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen, - timeout, h)) < 0) { + timeout * 100, h)) < 0) { if (ret == AVERROR_EXIT) goto fail1; -- cgit v1.2.3