summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 7.15.0 timecurl-7_15_0Daniel Stenberg2005-10-132-1/+18
|
* Make sure that the user and domain strings fit in the target buffer before weDaniel Stenberg2005-10-131-0/+7
| | | | copy them there.
* NTLM requires windows or OpenSSL. If you build with GnuTLS for example youDaniel Stenberg2005-10-131-1/+2
| | | | do not get NTLM support enabled.
* 7.15.0 in november?Daniel Stenberg2005-10-111-7/+2
|
* make it compile warning-free and free() the memory before exitDaniel Stenberg2005-10-101-0/+5
|
* pass a NULL pointer in the service argument (the second) if the port numberDaniel Stenberg2005-10-101-2/+6
| | | | was 0 as it seems at least some AIX versions don't like a "0" string there
* Added tftp.obj.Gisle Vanem2005-10-061-1/+7
|
* we all the next version 7.15.0 due to the new TFTP supportDaniel Stenberg2005-10-063-16/+19
|
* remove getinfo-times from the dist archive since the info is now in theDaniel Stenberg2005-10-061-2/+1
| | | | curl_easy_getinfo man page
* end the .nf section, mark the option names properly so that they end upDaniel Stenberg2005-10-061-15/+15
| | | | as links in the html version
* Added the info from getinfo-times as it really belongs in this man page.Daniel Stenberg2005-10-061-1/+35
|
* mention the recent fixesDaniel Stenberg2005-10-052-1/+12
|
* added test case 272 for -z download over FTP when the timestamp is identicalDaniel Stenberg2005-10-052-1/+39
| | | | to the remote one
* CURL_TIMECOND_IFMODSINCE actually requires that the remote document has beenDaniel Stenberg2005-10-051-1/+1
| | | | modded since the given time, so we should compare <= and not just <.
* Domenico Andreoli's patch that removes a few 0xa0(!) bytesDaniel Stenberg2005-10-041-3/+3
|
* Michael Wallner reported that the date parser had wrong offset stored forDaniel Stenberg2005-10-043-3/+8
| | | | the MEST and CEST time zones.
* Domenico Andreoli's SEE ALSO patchDaniel Stenberg2005-10-041-1/+1
|
* Ok, based on the online docs for AIX'es getservbyport_r() I adjusted to codeDaniel Stenberg2005-10-031-1/+2
| | | | | to do (what I believe is) "right". See docs on: http://publib.boulder.ibm.com/infocenter/pseries/index.jsp?topic=/com.ibm.aix.doc/libs/commtrf2/getservbyport_r.htm
* recent actionDaniel Stenberg2005-10-031-0/+6
|
* Avoid gcc warning "dereferencing type-punned pointerGisle Vanem2005-10-021-2/+3
| | | | will break strict-aliasing rules".
* Fix for building with MS Visual-C and single-threadedGisle Vanem2005-10-022-0/+12
| | | | runtime libs.
* fixed the proper path to the tftpd serverDaniel Stenberg2005-09-301-1/+1
|
* a new mirror, but we don't increase the amount since one of the former onesDaniel Stenberg2005-09-301-0/+1
| | | | are now officially no longer considered a mirror... ;-)
* Update in the "which license is best" section as it seems Debian people haveDaniel Stenberg2005-09-301-8/+13
| | | | made up their mind. Spell-checked as well.
* Starting now, the verbose text that goes like "About to connect() to" willDaniel Stenberg2005-09-291-1/+2
| | | | | now contain the word "proxy" is the hostname is in fact a proxy. This will help users detect situations when they mistakenly use a proxy.
* David Yan brought the Content-Range reportDaniel Stenberg2005-09-272-6/+7
|
* An anonymous submitter filed bug #1299181Daniel Stenberg2005-09-273-4/+14
| | | | | | (http://curl.haxx.se/bug/view.cgi?id=1299181) that identified a silly problem with Content-Range: headers with the 'bytes' keyword written in a different case than all lowercase! It would cause a segfault!
* TJ Saunders of the proftpd project identified and pointed out problems withDaniel Stenberg2005-09-273-27/+25
| | | | | the modified FTPS negotiation change of August 19 2005. Thus, we revert the change back to pre-7.14.1 status.
* clarify what the default read callback does and how it uses the READDATADaniel Stenberg2005-09-221-5/+10
| | | | option
* three debian bug reports addressedDaniel Stenberg2005-09-211-0/+15
|
* stricter type usage for time variables to avoid picky compiler warningsDaniel Stenberg2005-09-211-2/+2
|
* 1 - attempted fix of uninitialized variableDaniel Stenberg2005-09-211-28/+44
| | | | | 2 - indented and edited to fit better within 80 columns 3 - fixed possible buffer overflow in the service name lookup function
* simplified the sin6_scope_id test and removed some left-overs from the previousDaniel Stenberg2005-09-211-4/+1
| | | | way of detecting it
* fixed the check for the addrinfo structDaniel Stenberg2005-09-211-4/+11
|
* clarified ERRORBUFFER - some errors just don't write a string even thoughDaniel Stenberg2005-09-211-98/+101
| | | | | they should. And I removed all uses 'Note' (as they are pretty useless) and did some other language and phrasing cleanups.
* return an error string for the missing URL caseDaniel Stenberg2005-09-211-1/+3
|
* mention what WRITEFUNCTION and WRITEDATA do by defaultDaniel Stenberg2005-09-211-0/+7
|
* oops, broken sentence fixed:Daniel Stenberg2005-09-211-1/+1
| | | | http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=329305
* Uses __stdcall instead of SEC_ENTRY since it seems (at least) mingw doesn'tDaniel Stenberg2005-09-201-1/+1
| | | | define SEC_ENTRY and thus fails unless this is done!
* Since newer ares versions should work with ipv6, I modified the error messageDaniel Stenberg2005-09-201-1/+1
| | | | | to a warning message as a first step. We should persue to make curl use c-ares properly even when built with ipv6 support.
* typecasts added in an attempt to please the picky compilersDaniel Stenberg2005-09-201-2/+2
|
* added test 271Daniel Stenberg2005-09-191-1/+1
|
* test 271, the first ever TFTP testDaniel Stenberg2005-09-191-0/+41
|
* seems to work for test 271 on Linux now!Daniel Stenberg2005-09-191-11/+19
|
* Dmitry Bartsevich made the SSPI support work on Windows 9x as wellDaniel Stenberg2005-09-193-7/+23
|
* Added constants that will be used by ares_getaddrinfo. Made ares_getnameinfo ↵Dominick Meglio2005-09-185-627/+731
| | | | use the reentrant getservbyport (getservbyport_r) if it isavailable to ensure it works properly in a threaded environment
* keep 'socktype' in the connectdata struct and make sure we use that for allDaniel Stenberg2005-09-167-21/+22
| | | | protocol sockets even if the resolved address may say otherwise
* recent changesDaniel Stenberg2005-09-162-3/+17
|
* renamed sendfile() since some systems have a system call named like this -Daniel Stenberg2005-09-161-6/+6
| | | | now the functions are named sendtftp() and recvtftp() instead.
* In the Solaris 7 header files for tftp, the th_stuff struct member is anDaniel Stenberg2005-09-161-1/+2
| | | | unsigned short. Trying a typecast here to fix.