summaryrefslogtreecommitdiff
path: root/libavformat/udp.c
Commit message (Collapse)AuthorAge
* Include os_support.h only when neededLuca Abeni2007-11-21
| | | | Originally committed as revision 11073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove perror() usage from udp.cLuca Abeni2007-11-19
| | | | Originally committed as revision 11059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some more duplicated codeLuca Abeni2007-11-15
| | | | Originally committed as revision 11038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the useless variable "my_addr1"Luca Abeni2007-11-15
| | | | Originally committed as revision 11037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the same code to set local_port in the IPv4-only case and in theLuca Abeni2007-11-15
| | | | | | protocol-independet case Originally committed as revision 11036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some useless assignments (the UDPContext is allocated with av_mallocz())Luca Abeni2007-11-14
| | | | Originally committed as revision 11017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify set_remote_url(), and remove some code duplicationLuca Abeni2007-11-14
| | | | Originally committed as revision 11016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use recv() instead of recvfrom() (removes some other differences betweenLuca Abeni2007-11-14
| | | | | | IPv4-only and protocol-independent code) Originally committed as revision 11015 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a now unused fieldLuca Abeni2007-11-14
| | | | Originally committed as revision 11014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give better names to multicast functions (they are not IPv6-only)Luca Abeni2007-11-14
| | | | Originally committed as revision 11013 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid to duplicate the multicast code between the IPv4-only andLuca Abeni2007-11-14
| | | | | | protocol-independent versions Originally committed as revision 11012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some ifdefs by using the "dest_addr_len" field in both the IPv4-onlyLuca Abeni2007-11-14
| | | | | | code and the protocol-independent code Originally committed as revision 11011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take the target address family in account when determining the family ofRonald S. Bultje2007-10-31
| | | | | | | | | the local address to bind. Fixes ffserver and UDP streaming without --disable-ipv6 on MacOS X Patch by Ronald S. Bultje (rsbultje st gmail dot com) Originally committed as revision 10883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last commitLuca Abeni2007-10-31
| | | | Originally committed as revision 10882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Resolve hosts and bind sockets even when the local_port is not set (0)Nicolas George2007-10-31
| | | | | | | | Fixes ffserver on linux when "--disable-ipv6" is not used Patch by Nicolas George (nicolas dot george at normalesup dot org) Originally committed as revision 10881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set UDP receive buffer to 64kRamiro Polla2007-08-16
| | | | Originally committed as revision 10129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add initialization and cleanup functions for WinsockRamiro Polla2007-08-09
| | | | Originally committed as revision 10040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_IO with AVERROR(EIO).Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some explanatory comments to #endif directives.Diego Biurrun2007-06-12
| | | | Originally committed as revision 9287 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused static function.Diego Biurrun2007-06-12
| | | | Originally committed as revision 9285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use ff_neterrno() and FF_NETERROR() for networking error handlingAlex Beregszaszi2007-04-27
| | | | Originally committed as revision 8845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change PF_INET to AF_INET to be consistent in the whole project. PF_INET is ↵Alex Beregszaszi2007-02-22
| | | | | | deprecated, while AF_INET is referred by the POSIX standards Originally committed as revision 8073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This fixes error handling for BeOS, removing the need for some ifdefs.François Revol2007-02-13
| | | | | | | | | AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h. Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed. Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code. This also removes the need for berrno.h. Originally committed as revision 7965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move networking #includes into separate fileRamiro Polla2007-02-04
| | | | | | patch by Ramiro Polla angustia =a= arrozcru =d= no-ip =d= org Originally committed as revision 7817 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2007-01-18
| | | | Originally committed as revision 7583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The long awaited BeOS cleanup, phase 1.1: removed useless ifdef, changed ↵François Revol2007-01-18
| | | | | | check for net_server to IP_MULTICAST_TTL. Originally committed as revision 7582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The long awaited BeOS cleanup, phase 1François Revol2007-01-18
| | | | Originally committed as revision 7581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make it possible to reuse UDP socket (optional, disabled by default)Thijs2006-10-28
| | | | | | | | | Patch by Thijs % thijsvermeir A telenet P be % Original thread: Subject: Re: [Ffmpeg-devel] [PATCH proposal] Reuse UDP socket v2 Date: October 28, 2006 11:09:00 AM CEDT Originally committed as revision 6825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some signedness warningsMåns Rullgård2006-09-27
| | | | Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add const to (mostly) char* and make some functions static, which aren't usedStefan Huehner2006-06-18
| | | | | | | outside their declaring source file and which have no corresponding prototype. patch by Stefan Huehner stefan^^@^^huehner^^.^^org Originally committed as revision 5497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FreeBSD ipv6 multicast patch from ports treeAlex Beregszaszi2005-08-12
| | | | Originally committed as revision 4507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* udp ipv6 localhost resolving patch by ("Hans Zandbelt": Hans Zandbelt, ↵Hans Zandbelt2005-07-21
| | | | | | telin nl) Originally committed as revision 4463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* printf-> av_log patch by (Benjamin Larsson, banan: student ltu se)Benjamin Larsson2005-07-13
| | | | Originally committed as revision 4437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill warnings patch by (Måns Rullgård <mru inprovide com>)Måns Rullgård2005-02-24
| | | | Originally committed as revision 3977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dissallow sprintfMichael Niedermayer2005-01-12
| | | | Originally committed as revision 3823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)Hans Zandbelt2004-11-09
| | | | Originally committed as revision 3663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz ↵Petr Doubek2004-08-12
| | | | | | | | dot ch>) tested and submitted by (Torsten Spindler <spindler at hbt dot arch dot ethz dot ch>) Originally committed as revision 3381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sweeping change from -EIO -> AVERROR_IOMike Melanson2004-06-19
| | | | Originally committed as revision 3239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* undefined local_port fix by (Giancarlo Formicuccia <ilsensine at inwind dot it>)Michael Niedermayer2003-07-04
| | | | Originally committed as revision 2007 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * UINTX -> uintx_t INTX -> intx_tZdenek Kabelac2003-02-11
| | | | Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* variable UDP packet size patch by Max KrasnyanskyMax Krasnyansky2003-02-09
| | | | Originally committed as revision 1565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renamed libav to libavformatFabrice Bellard2002-11-25
Originally committed as revision 1276 to svn://svn.ffmpeg.org/ffmpeg/trunk