Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-04 | Roland Blom filed bug report #1481217 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini and David Byron. libcurl previously wrongly used GetLastError() on windows to get error details after socket-related function calls, when it really should use WSAGetLastError() instead. When changing to this, the former function Curl_ourerrno() is now instead called Curl_sockerrno() as it is necessary to only use it to get errno from socket-related functions as otherwise it won't work as intended on Windows. | |||
2006-04-26 | Use the HAVE_MALLOC_H and HAVE_PROCESS_H defines | Gisle Vanem | |
(more logical). | |||
2005-12-13 | Undo last 'fix', since it was not the proper one. | Yang Tse | |
2005-12-12 | Fix compiler warning | Yang Tse | |
2005-12-11 | Undo last changes | Yang Tse | |
2005-12-11 | Fix compiler warning and compatibility issue with the type of the parameter ↵ | Yang Tse | |
used in getnameinfo() to receive the length of the sockaddr struct. | |||
2005-12-08 | Fix compiler warning | Yang Tse | |
2005-11-08 | Removed the use of AI_CANONNAME in the IPv6-enabled resolver functions since | Daniel Stenberg | |
we really have no use for reverse lookups of the address. I truly hope these are the last reverse lookups we had lingering in the code! | |||
2005-10-20 | Added a dump_addrinfo() function to ease debugging of resolved names. Define | Daniel Stenberg | |
DEBUG_ADDRINFO to enable. | |||
2005-10-10 | pass a NULL pointer in the service argument (the second) if the port number | Daniel Stenberg | |
was 0 as it seems at least some AIX versions don't like a "0" string there | |||
2005-09-16 | keep 'socktype' in the connectdata struct and make sure we use that for all | Daniel Stenberg | |
protocol sockets even if the resolved address may say otherwise | |||
2005-09-02 | John Kelly added TFTP support to libcurl. A bunch of new error codes was | Daniel Stenberg | |
added. TODO: add them to docs. add TFTP server to test suite. add TFTP to list of protocols whereever those are mentioned. | |||
2005-04-19 | only define _REENTRANT if not already defined, and only in setup.h | Daniel Stenberg | |
2005-03-17 | include inet_pton.h | Daniel Stenberg | |
2005-03-17 | use Curl_inet_pton(), not inet_pton(). | Daniel Stenberg | |
2005-02-09 | FTP code turned into state machine. Not completely yet, but a good start. | Daniel Stenberg | |
The tag 'before_ftp_statemachine' was set just before this commit in case of future need. | |||
2004-10-06 | removed tabs and trailing whitespace from source | Daniel Stenberg | |
2004-08-20 | actually, we check for a numerical host using either ipv4 or ipv6, as neither | Daniel Stenberg | |
should result in a reverse dns lookup | |||
2004-08-20 | use inet_pton() correctly! | Daniel Stenberg | |
2004-08-19 | Ling Thio pointed out that getaddrinfo() reverse-lookups ip-only names, and | Daniel Stenberg | |
this is an attempt to prevent it from doing that. affects ipv6-enabled only. | |||
2004-06-24 | Gisle cleaned up remaining host resolve re-org issues | Daniel Stenberg | |
2004-06-10 | Gisle Vanem's improved verbose output and timeout handling when connecting to | Daniel Stenberg | |
a host name that resolves to multiple IP addresses. | |||
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | |
memory.h is included everywhere for this. | |||
2004-04-26 | corrected mistake | Daniel Stenberg | |
2004-04-26 | IDN adjustments and host cleanups by Gisle | Daniel Stenberg | |
2004-04-26 | Major hostip.c cleanup and split into multiple files and easier #ifdef | Daniel Stenberg | |
usage. |