Browse Source

Revert "Timeout TCP open() after 5 seconds."

This code is redundant and conflicts with lucas reimplementation of it.

This reverts commit a2f5e14a86.
tags/n0.8
Michael Niedermayer 14 years ago
parent
commit
a22500744b
1 changed files with 0 additions and 7 deletions
  1. +0
    -7
      libavformat/tcp.c

+ 0
- 7
libavformat/tcp.c View File

@@ -97,7 +97,6 @@ static int tcp_open(URLContext *h, const char *uri, int flags)
}

if (ret < 0) {
int timeout=50;
struct pollfd p = {fd, POLLOUT, 0};
ret = ff_neterrno();
if (ret == AVERROR(EINTR)) {
@@ -120,12 +119,6 @@ static int tcp_open(URLContext *h, const char *uri, int flags)
ret = poll(&p, 1, 100);
if (ret > 0)
break;
if(!--timeout){
av_log(NULL, AV_LOG_ERROR,
"TCP open %s:%d timeout\n",
hostname, port);
goto fail;
}
}
if (ret <= 0) {
ret = AVERROR(ETIMEDOUT);


Loading…
Cancel
Save