Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-09 | Some tests were using functions curlx_tvnow and curlx_tvdiff which are not | Yang Tse | |
part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx The documented way of using them would be to use timeval.c as a source code file. The above described method works very well when statically linking libcurl and apps, test programs, but has several drawbacks when you build a true shared libcurl (i.e. Name space clash at linkage stage as functions are defined more than once. Windows makefiles are not capable of handling this system of source-level sharing) So... Now testutil.h and testutil.c define and implement tutil_tvnow and tutil_tvdiff which replace curlx_tvnow and curlx_tvdiff for the libtest programs. Doing this we avoid the above described problems, and the code in the testsuite does not impose the need to keep those functions public in libcurl even when not part of the API. | |||
2007-02-09 | Some tests were using functions curlx_tvnow and curlx_tvdiff which are not | Yang Tse | |
part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx The documented way of using them would be to use timeval.c as a source code file. The above described method works very well when statically linking libcurl and apps, test programs, but has several drawbacks when you build a true shared libcurl (i.e. Name space clash at linkage stage as functions are defined more than once. Windows makefiles are not capable of handling this system of source-level sharing) So... Now testutil.h and testutil.c define and implement tutil_tvnow and tutil_tvdiff which replace curlx_tvnow and curlx_tvdiff for the libtest programs. Doing this we avoid the above described problems, and the code in the testsuite does not impose the need to keep those functions public in libcurl even when not part of the API. | |||
2007-02-08 | compiler warning fix | Yang Tse | |
2007-02-08 | use macro AC_AIX to define `_ALL_SOURCE', if on AIX. | Yang Tse | |
2007-02-07 | SCP upload done non-blocking | Daniel Stenberg | |
2007-02-07 | use same AIX XLC compiler options as curl's | Yang Tse | |
2007-02-07 | AIX xlc has to have strict aliasing turned off. If not, the optimizer | Yang Tse | |
assumes that pointers can only point to an object of the same type. | |||
2007-02-07 | *) Remove duplicate declaration of TYPE_SOCKADDR_STORAGE | Yang Tse | |
*) Update CURL_CC_DEBUG_OPTS from curl's script | |||
2007-02-06 | INADDR_NONE no longer used. | Gisle Vanem | |
2007-02-06 | Added debug option ('-d') for Watt-32 programs. | Gisle Vanem | |
2007-02-06 | Added HAVE_PROCESS_H for DOS/Win32. | Gisle Vanem | |
Include <process.h> for getpid() in ares_init.c. | |||
2007-02-06 | Fix compiler warning. | Gisle Vanem | |
2007-02-06 | Include <sys/time.h> and <unistd.h> inside HAVE_x_H. | Gisle Vanem | |
Added 'optind' and 'optarg' as in adig.c. | |||
2007-02-06 | Include <sys/time.h> and <unistd.h> inside HAVE_x_H. | Gisle Vanem | |
2007-02-06 | fix for millisecond resolution timeouts | Yang Tse | |
2007-02-06 | compiler warning fix | Yang Tse | |
2007-02-06 | non-blocking SSH stuff | Daniel Stenberg | |
2007-02-06 | read SFTP with the non-blocking API | Daniel Stenberg | |
2007-02-06 | compiler warning fix | Yang Tse | |
2007-02-05 | - Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS | Daniel Stenberg | |
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the timeouts with millisecond resolution instead. The only restriction to that is the alarm() (sometimes) used to abort name resolves as that uses full seconds. I fixed the FTP response timeout part of the patch. Internally we now count and keep the timeouts in milliseconds but it also means we multiply set timeouts with 1000. The effect of this is that no timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which equals 24.86 days. We probably couldn't before either since the code did *1000 on the timeout values on several places already. | |||
2007-02-05 | Remove '-Dselect=select_s'. Remove depend.dj- | Gisle Vanem | |
2007-02-05 | compiler warning fix | Yang Tse | |
2007-02-05 | cookie expiry date in several test cases set to year 2030/2035 | Yang Tse | |
2007-02-05 | Year 2038 has its own problems (32 bit integer overflow). | Yang Tse | |
So cookie expiration date is lowered to expire at most in 2035. | |||
2007-02-04 | Use correct 3rd argument for ioctlsocket() under Watt-32. | Gisle Vanem | |
2007-02-04 | Use correct calling convention. | Gisle Vanem | |
2007-02-04 | Added DllMain() function for Watcom. | Gisle Vanem | |
2007-02-04 | Suppress warning "'nread' might be used uninitialized in this function". | Gisle Vanem | |
2007-02-04 | Constify argument to suburl(). Remove trailing space. | Gisle Vanem | |
2007-02-03 | some additional info | Daniel Stenberg | |
2007-02-03 | compiler warning fix | Yang Tse | |
2007-02-03 | - Yang Tse fixed the cookie expiry date in several test cases that started to | Daniel Stenberg | |
fail since they used "1 feb 2007"... - Manfred Schwarb reported that socks5 support was broken and help us pinpoint the problem. The code now tries harder to use httproxy and proxy where apppropriate, as not all proxies are HTTP... | |||
2007-02-03 | - Manfred Schwarb reported that socks5 support was broken and help us pinpoint | Daniel Stenberg | |
the problem. The code now tries harder to use httproxy and proxy where apppropriate, as not all proxies are HTTP... | |||
2007-02-02 | compiler warning fix | Yang Tse | |
2007-02-02 | add debug messages for initialization failures | Yang Tse | |
2007-02-02 | add missing strings for existing error codes | Yang Tse | |
2007-02-02 | move DEBUGF macro definition to setup_once.h | Yang Tse | |
2007-02-02 | prefer using the (upcoming) non-blocking libssh2 API | Daniel Stenberg | |
2007-02-02 | don't require OpenSSL for libssh2 linking to work, in preparation for | Daniel Stenberg | |
upcoming libgcrypt-capable libssh2-versions | |||
2007-02-02 | fix leftover updating cookie expiration date | Yang Tse | |
2007-02-02 | In testsuite, update test cookies expiration from 2007-Feb-1 to 2038-Feb-1 | Yang Tse | |
2007-02-02 | reported in bug: #1566077 the former URL mentioned in the generated cookie | Yang Tse | |
jar has died and we now instead point out our own version of that | |||
2007-02-02 | fix test case 62 which was failing due to cookies expiring 1 Feb 2007 | Yang Tse | |
2007-02-02 | more fixes for the testsuite cookie expiration issue | Yang Tse | |
2007-02-02 | cookie expiration time got us with pants at our knees. | Yang Tse | |
Next time in 2038 :-) | |||
2007-02-01 | compiler warning fix | Yang Tse | |
2007-02-01 | Suppress the "'convbuf' might be used uninitialized in this function" warning. | Gisle Vanem | |
2007-02-01 | fogot to change Curl_mk_connc in header file | Yang Tse | |
2007-02-01 | compiler warning fix | Yang Tse | |
2007-01-31 | Properly use libtool macros to fix OpenLDAP library name detection on Darwin. | Dan Fandrich | |