Re: [FFmpeg-devel] [PATCH 1/1] avformat/tcp: support timeout for getaddrinfo For fixing stucking when resolving addrinfo

2016-06-08 Thread XinZheng Zhang
On Tue, Jun 7, 2016 at 5:42 AM, Michael Niedermayer wrote: > On Wed, Jun 01, 2016 at 12:03:32PM +0800, XinZheng Zhang wrote: >> On Tue, May 31, 2016 at 9:33 PM, Hendrik Leppkes wrote: >> > >> > On Tue, May 31, 2016 at 2:58 PM, Xinzheng Zhang

Re: [FFmpeg-devel] [PATCH 1/1] avformat/tcp: support timeout for getaddrinfo For fixing stucking when resolving addrinfo

2016-06-06 Thread Michael Niedermayer
On Wed, Jun 01, 2016 at 12:03:32PM +0800, XinZheng Zhang wrote: > On Tue, May 31, 2016 at 9:33 PM, Hendrik Leppkes wrote: > > > > On Tue, May 31, 2016 at 2:58 PM, Xinzheng Zhang > > wrote: > > > --- > > > libavformat/tcp.c | 215 > > >

Re: [FFmpeg-devel] [PATCH 1/1] avformat/tcp: support timeout for getaddrinfo For fixing stucking when resolving addrinfo

2016-06-03 Thread XinZheng Zhang
On Wed, Jun 1, 2016 at 12:03 PM, XinZheng Zhang wrote: > On Tue, May 31, 2016 at 9:33 PM, Hendrik Leppkes wrote: >> >> On Tue, May 31, 2016 at 2:58 PM, Xinzheng Zhang >> wrote: >> > --- >> > libavformat/tcp.c | 215 >> >

Re: [FFmpeg-devel] [PATCH 1/1] avformat/tcp: support timeout for getaddrinfo For fixing stucking when resolving addrinfo

2016-05-31 Thread XinZheng Zhang
On Tue, May 31, 2016 at 9:33 PM, Hendrik Leppkes wrote: > > On Tue, May 31, 2016 at 2:58 PM, Xinzheng Zhang wrote: > > --- > > libavformat/tcp.c | 215 > > ++ > > 1 file changed, 215 insertions(+) >

Re: [FFmpeg-devel] [PATCH 1/1] avformat/tcp: support timeout for getaddrinfo For fixing stucking when resolving addrinfo

2016-05-31 Thread Hendrik Leppkes
On Tue, May 31, 2016 at 2:58 PM, Xinzheng Zhang wrote: > --- > libavformat/tcp.c | 215 > ++ > 1 file changed, 215 insertions(+) > This whole patch looks extremely complicated and long for something hidden behind a tiny

[FFmpeg-devel] [PATCH 1/1] avformat/tcp: support timeout for getaddrinfo For fixing stucking when resolving addrinfo

2016-05-31 Thread Xinzheng Zhang
--- libavformat/tcp.c | 215 ++ 1 file changed, 215 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index c105479..9d4fe3d 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -31,11 +31,15 @@ #if HAVE_POLL_H #include

Re: [FFmpeg-devel] [PATCH 1/1] avformat/tcp: support timeout for getaddrinfo For fixing stucking when resolving addrinfo

2016-05-31 Thread XinZheng Zhang
Sorry, This a wrong patch from a private branch. I will post the correct one later. On Tue, May 31, 2016 at 7:05 PM, Xinzheng Zhang wrote: > From: xinzhengzhang > > --- > libavformat/tcp.c | 194 >

[FFmpeg-devel] [PATCH 1/1] avformat/tcp: support timeout for getaddrinfo For fixing stucking when resolving addrinfo

2016-05-31 Thread Xinzheng Zhang
From: xinzhengzhang --- libavformat/tcp.c | 194 ++ 1 file changed, 194 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 4ac061a..dc3e0bd 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@