Age | Commit message (Expand) | Author |
2011-05-27 | tcp: make connect() timeout properly | Luca Barbato |
2011-04-20 | libavformat: Make protocols pass URLContext as log context where available | Martin Storsjö |
2011-04-08 | lavf: use designated initializers for all protocols | Anton Khirnov |
2011-04-07 | avio: move extern url_interrupt_cb declaration from avio.h to url.h | Anton Khirnov |
2011-04-07 | avio: AVIO_ prefixes for URL_ open flags. | Anton Khirnov |
2011-04-07 | proto: introduce listen option in tcp | Luca Barbato |
2011-04-07 | proto: factor ff_network_wait_fd and use it on udp | Luca Barbato |
2011-03-19 | Replace FFmpeg with Libav in licence headers | Mans Rullgard |
2011-03-15 | Use AVERROR_EXIT with url_interrupt_cb. | Nicolas George |
2011-02-23 | libavformat: Remove FF_NETERRNO() | Martin Storsjö |
2011-02-05 | Non-blocking protocol: TCP | Nicolas George |
2011-02-03 | TCP: factor the poll() call | Nicolas George |
2011-01-28 | os: replace select with poll | Luca Barbato |
2011-01-26 | Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice. | Diego Elio Pettenò |
2010-12-14 | tcp: Check url_interrupt_cb if connect was interrupted by a signal | Thomas Guillem |
2010-11-04 | Remove two instances of AVERROR(ff_neterrno()), because ff_neterrno() itself | Ronald S. Bultje |
2010-09-21 | tcp: Check both wfds and efds when waiting for the result from connect | Martin Storsjö |
2010-08-14 | Print error messages in case of connection failure or name resolution failure | Ronald S. Bultje |
2010-06-27 | Make ff_url_split() public | Måns Rullgård |
2010-06-01 | Declare the url_write buffer parameter as const | Martin Storsjö |
2010-03-26 | Don't report EINTR from select as an error, retry select instead | Martin Storsjö |
2010-03-14 | move ff_url_split() and ff_url_join() declarations to internal.h | Aurelien Jacobs |
2010-03-08 | Rename url_split to ff_url_split | Martin Storsjö |
2010-03-05 | Don't explicitly initialize networking in the tcp and udp protocols | Martin Storsjö |
2010-01-27 | Fix BSD compile (PF_UNSPEC is not a standard define, AF_UNSPEC is). | Ronald S. Bultje |
2010-01-11 | Use getaddrinfo() instead of resolve_host(). Patch by Martin Storsjö | Martin Storsjö |
2009-07-15 | Use ff_neterrno instead of errno in tcp.c. | Martin Storsjö |
2009-03-03 | Add url_get_file_handle(), which is used to get the file descriptor | Ronald S. Bultje |
2009-01-19 | cosmetics: Remove pointless period after copyright statement non-sentences. | Diego Biurrun |
2009-01-13 | Change semantic of CONFIG_*, HAVE_* and ARCH_*. | Aurelien Jacobs |
2008-09-26 | only include sys/select.h if present, fix mingw compilation | Baptiste Coudurier |
2008-09-24 | include sys/select.h to get select, according to posix 2001, | Baptiste Coudurier |
2008-08-24 | Remove check for @ in tcp.c which removes the authorization data from the | Ronald S. Bultje |
2008-08-23 | Cosmetics after previous patches. | Ronald S. Bultje |
2008-08-23 | On failure, return directly because the fail: case does nothing. This also | Ronald S. Bultje |
2008-08-23 | Move malloc() down until after all initializations, so that the resource is | Ronald S. Bultje |
2008-08-23 | Fix memleak on some OSes in case network initialization fails. See | Ronald S. Bultje |
2008-08-23 | Remove useless comments. See "[PATCH] tcp.c/udp.c memleak?" for discussion. | Ronald S. Bultje |
2008-03-05 | Set TCP protocol to is_streamed=1 as seeking is not possible. | Diego Biurrun |
2007-11-21 | Include os_support.h only when needed | Luca Abeni |
2007-08-09 | Add initialization and cleanup functions for Winsock | Ramiro Polla |
2007-08-08 | MinGW returns EAGAIN instead of EINPROGRESS | Ramiro Polla |
2007-07-19 | Replace all occurrences of AVERROR_IO with AVERROR(EIO). | Panagiotis Issaris |
2007-04-27 | implement ff_socket_nonblock and use it in networking code | Alex Beregszaszi |
2007-04-27 | use ff_neterrno() and FF_NETERROR() for networking error handling | Alex Beregszaszi |
2007-04-26 | move resolve_host from tcp.c to os_support.c as it is used widely | Alex Beregszaszi |
2007-04-26 | cosmetics in resolve_host | Alex Beregszaszi |
2007-02-22 | change PF_INET to AF_INET to be consistent in the whole project. PF_INET is d... | Alex Beregszaszi |
2007-02-13 | This fixes error handling for BeOS, removing the need for some ifdefs. | François Revol |
2007-02-04 | move networking #includes into separate file | Ramiro Polla |