mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '9835abb6d63fb07613994ae90e72fef758149408'
* commit '9835abb6d63fb07613994ae90e72fef758149408': network: uniform ff_listen_bind and ff_listen_connect Conflicts: libavformat/network.c libavformat/tcp.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
82070b01b8
|
@ -214,8 +214,29 @@ int ff_is_multicast_address(struct sockaddr *addr)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int ff_poll_interrupt(struct pollfd *p, nfds_t nfds, int timeout,
|
||||||
|
AVIOInterruptCB *cb)
|
||||||
|
{
|
||||||
|
int runs = timeout / POLLING_TIME;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
do {
|
||||||
|
if (ff_check_interrupt(cb))
|
||||||
|
return AVERROR_EXIT;
|
||||||
|
ret = poll(p, nfds, POLLING_TIME);
|
||||||
|
if (ret != 0)
|
||||||
|
break;
|
||||||
|
} while (timeout <= 0 || runs-- > 0);
|
||||||
|
|
||||||
|
if (!ret)
|
||||||
|
return AVERROR(ETIMEDOUT);
|
||||||
|
if (ret < 0)
|
||||||
|
return AVERROR(errno);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int ff_listen_bind(int fd, const struct sockaddr *addr,
|
int ff_listen_bind(int fd, const struct sockaddr *addr,
|
||||||
socklen_t addrlen, int timeout)
|
socklen_t addrlen, int timeout, URLContext *h)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
int reuse = 1;
|
int reuse = 1;
|
||||||
|
@ -231,9 +252,9 @@ int ff_listen_bind(int fd, const struct sockaddr *addr,
|
||||||
if (ret)
|
if (ret)
|
||||||
return ff_neterrno();
|
return ff_neterrno();
|
||||||
|
|
||||||
ret = poll(&lp, 1, timeout >= 0 ? timeout : -1);
|
ret = ff_poll_interrupt(&lp, 1, timeout, &h->interrupt_callback);
|
||||||
if (ret <= 0)
|
if (ret < 0)
|
||||||
return AVERROR(ETIMEDOUT);
|
return ret;
|
||||||
|
|
||||||
ret = accept(fd, NULL, NULL);
|
ret = accept(fd, NULL, NULL);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
@ -246,7 +267,7 @@ int ff_listen_bind(int fd, const struct sockaddr *addr,
|
||||||
}
|
}
|
||||||
|
|
||||||
int ff_listen_connect(int fd, const struct sockaddr *addr,
|
int ff_listen_connect(int fd, const struct sockaddr *addr,
|
||||||
socklen_t addrlen, int rw_timeout, URLContext *h)
|
socklen_t addrlen, int timeout, URLContext *h)
|
||||||
{
|
{
|
||||||
struct pollfd p = {fd, POLLOUT, 0};
|
struct pollfd p = {fd, POLLOUT, 0};
|
||||||
int64_t wait_started;
|
int64_t wait_started;
|
||||||
|
@ -264,16 +285,9 @@ int ff_listen_connect(int fd, const struct sockaddr *addr,
|
||||||
continue;
|
continue;
|
||||||
case AVERROR(EINPROGRESS):
|
case AVERROR(EINPROGRESS):
|
||||||
case AVERROR(EAGAIN):
|
case AVERROR(EAGAIN):
|
||||||
wait_started = av_gettime();
|
ret = ff_poll_interrupt(&p, 1, timeout, &h->interrupt_callback);
|
||||||
do {
|
if (ret < 0)
|
||||||
if (ff_check_interrupt(&h->interrupt_callback))
|
return ret;
|
||||||
return AVERROR_EXIT;
|
|
||||||
ret = poll(&p, 1, 100);
|
|
||||||
if (ret > 0)
|
|
||||||
break;
|
|
||||||
} while (!rw_timeout || (av_gettime() - wait_started < rw_timeout));
|
|
||||||
if (ret <= 0)
|
|
||||||
return AVERROR(ETIMEDOUT);
|
|
||||||
optlen = sizeof(ret);
|
optlen = sizeof(ret);
|
||||||
if (getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen))
|
if (getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen))
|
||||||
ret = AVUNERROR(ff_neterrno());
|
ret = AVUNERROR(ff_neterrno());
|
||||||
|
|
|
@ -223,9 +223,38 @@ const char *ff_gai_strerror(int ecode);
|
||||||
|
|
||||||
int ff_is_multicast_address(struct sockaddr *addr);
|
int ff_is_multicast_address(struct sockaddr *addr);
|
||||||
|
|
||||||
|
#define POLLING_TIME 100 /// Time in milliseconds between interrupt check
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bind to a file descriptor and poll for a connection.
|
||||||
|
*
|
||||||
|
* @param fd First argument of bind().
|
||||||
|
* @param addr Second argument of bind().
|
||||||
|
* @param addrlen Third argument of bind().
|
||||||
|
* @param timeout Polling timeout in milliseconds.
|
||||||
|
* @param h URLContext providing interrupt check
|
||||||
|
* callback and logging context.
|
||||||
|
* @return A non-blocking file descriptor on success
|
||||||
|
* or an AVERROR on failure.
|
||||||
|
*/
|
||||||
int ff_listen_bind(int fd, const struct sockaddr *addr,
|
int ff_listen_bind(int fd, const struct sockaddr *addr,
|
||||||
socklen_t addrlen, int timeout);
|
socklen_t addrlen, int timeout,
|
||||||
|
URLContext *h);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Connect to a file descriptor and poll for result.
|
||||||
|
*
|
||||||
|
* @param fd First argument of connect(),
|
||||||
|
* will be set as non-blocking.
|
||||||
|
* @param addr Second argument of connect().
|
||||||
|
* @param addrlen Third argument of connect().
|
||||||
|
* @param timeout Polling timeout in milliseconds.
|
||||||
|
* @param h URLContext providing interrupt check
|
||||||
|
* callback and logging context.
|
||||||
|
* @return 0 on success, AVERROR on failure.
|
||||||
|
*/
|
||||||
int ff_listen_connect(int fd, const struct sockaddr *addr,
|
int ff_listen_connect(int fd, const struct sockaddr *addr,
|
||||||
socklen_t addrlen, int timeout,
|
socklen_t addrlen, int timeout,
|
||||||
URLContext *h);
|
URLContext *h);
|
||||||
|
|
||||||
#endif /* AVFORMAT_NETWORK_H */
|
#endif /* AVFORMAT_NETWORK_H */
|
||||||
|
|
|
@ -115,13 +115,13 @@ static int tcp_open(URLContext *h, const char *uri, int flags)
|
||||||
|
|
||||||
if (s->listen) {
|
if (s->listen) {
|
||||||
if ((fd = ff_listen_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
|
if ((fd = ff_listen_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
|
||||||
s->listen_timeout)) < 0) {
|
s->listen_timeout, h)) < 0) {
|
||||||
ret = fd;
|
ret = fd;
|
||||||
goto fail1;
|
goto fail1;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ((ret = ff_listen_connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
|
if ((ret = ff_listen_connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
|
||||||
h->rw_timeout, h)) < 0) {
|
h->rw_timeout / 1000, h)) < 0) {
|
||||||
|
|
||||||
if (ret == AVERROR_EXIT)
|
if (ret == AVERROR_EXIT)
|
||||||
goto fail1;
|
goto fail1;
|
||||||
|
|
Loading…
Reference in New Issue