log stream/tcp.c @ 37195:ac6c37d85d65 default tip

age author description
Sun, 19 Jan 2014 22:24:53 +0000 reimar tcp: fix socket/descriptor leak on error.
Sun, 14 Jul 2013 18:31:15 +0000 al build: Define _BSD_SOURCE for gethostbyname2
Thu, 11 Jul 2013 22:08:33 +0000 al stream/tcp: Check that host object has the right AF before connect
Mon, 05 Nov 2012 20:26:12 +0000 reimar Remove nonsense casts.
Sun, 20 Jun 2010 19:29:18 +0000 attila Prefere the use of inet_ntop over inet_ntoa, as the former is ipv6 safe.
Sat, 20 Feb 2010 11:13:01 +0000 reimar Make sure we do not try to use IPv6 with winsock2, we end up connecting
Sat, 30 Jan 2010 22:26:47 +0000 diego Add license header to all files missing it in the stream subdirectory.
Fri, 26 Jun 2009 13:54:22 +0000 reimar Replace incorrect use of strncpy by av_strlcpy.
Wed, 13 May 2009 02:58:57 +0000 diego whitespace cosmetics: Remove all trailing whitespace.
Sun, 01 Feb 2009 14:38:28 +0000 diego Restructure network tests: Always check for both inet_aton and inet_pton.
Sun, 01 Feb 2009 13:42:27 +0000 diego Convert HAVE_WINSOCK2_H into a 0/1 definition.
Sun, 01 Feb 2009 13:33:35 +0000 diego HAVE_ATON --> HAVE_INET_ATON to match FFmpeg and give it a 0/1 value.
Sat, 27 Dec 2008 12:03:51 +0000 diego Avoid u_ BSD type names.
Mon, 01 Sep 2008 07:31:57 +0000 diego Move '#define closesocket close' preprocessor directive to a common place
Sun, 31 Aug 2008 13:59:54 +0000 diego Revert moving closesocket definition and network headers to network.h.
Fri, 29 Aug 2008 22:55:39 +0000 diego Move duplicated '#define closesocket close' into network.h along with
Fri, 29 Aug 2008 20:05:08 +0000 diego Rename HAVE_WINSOCK preprocessor condition to HAVE_WINSOCK_H.
Fri, 01 Aug 2008 20:28:58 +0000 diego Rename some preprocessor directives from CONFIG_* to HAVE_* where appropriate;
Wed, 30 Jul 2008 12:01:30 +0000 diego Start unifying names of internal preprocessor directives.
Thu, 15 May 2008 16:11:50 +0000 diego Add missing stream.h #include, fixes the warning:
Wed, 09 Apr 2008 00:36:28 +0000 albeu Remove the need for code using stream to export an mp_input_check_interrupt()
Sat, 27 Oct 2007 17:46:09 +0000 zuxy Make functions static if they aren't referenced externally.
Wed, 19 Sep 2007 13:01:08 +0000 reimar (Re)move idiotic checks, ret can't be < 0 or > 0 if the loop condition
Wed, 19 Sep 2007 12:54:10 +0000 reimar Fix a few typos
Thu, 01 Mar 2007 14:57:44 +0000 ivo winsocks expects an int in milliseconds instead of struct timeval to set
Mon, 05 Feb 2007 23:46:08 +0000 rathann Fix a few gcc warnings, approved by Diego and Reimar.
Sun, 04 Feb 2007 16:08:29 +0000 reimar Use defined() syntax instead without ().
Sun, 04 Feb 2007 14:18:56 +0000 rtogni Add timeout to tcp connections, avoid hanging forever.
Sat, 26 Aug 2006 19:35:55 +0000 reimar Cosmetics: recommit patch changing return values to defines
Sat, 26 Aug 2006 19:23:14 +0000 reimar Recreate tcp.c as partial copy from network.c
Sun, 20 Aug 2006 23:19:18 +0000 rfelker missing header for struct timeval
Sat, 05 Aug 2006 10:30:06 +0000 ben isolated tcp socket code from network.c to a dedicated file