Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-03 | stricter newline policy | Yang Tse | |
2007-03-02 | - Robert A. Monat and Shmulik Regev helped out to fix the new */Makefile.vc8 | Daniel Stenberg | |
makefiles that are included in the source release archives, generated from the Makefile.vc6 files by the maketgz script. I also modified the root Makefile to have a VC variable that defaults to vc6 but can be overridden to allow it to be used for vc8 as well. Like this: nmake VC=vc8 vc | |||
2007-03-01 | remove unncessary and wrong remark | Daniel Stenberg | |
2007-03-01 | Reduce the posibility of leaving the sockfilter hanging around when | Yang Tse | |
tearing down the test ftp server due to a read error condition. | |||
2007-03-01 | Do not remove CURLM_STATE_WAITPROXYCONNECT from the CURLMstate enum | Yang Tse | |
in builds with HTTP support disabled to keep consistent enum values for CURLMstate in all kind of builds. | |||
2007-02-28 | proper symbol definition check for Novell NetWare | Yang Tse | |
2007-02-28 | proper symbol definition check for all AmigaOS flavours | Yang Tse | |
2007-02-28 | clarify that -K files are expected to have one option per line | Daniel Stenberg | |
2007-02-28 | protect from themselves those who need it | Yang Tse | |
2007-02-27 | log a 1120 chars long string to aid in quoted-printable and soft | Yang Tse | |
line break detection in daily build logs. | |||
2007-02-27 | - Hang Kin Lau found and fixed: When I use libcurl to connect to an https | Daniel Stenberg | |
server through a proxy and have the remote https server port set using the CURLOPT_PORT option, protocol gets reset to http from https after the first request. User defined URL was modified internally by libcurl and subsequent reuse of the easy handle may lead to connection using a different protocol (if not originally http). I found that libcurl hardcoded the protocol to "http" when it tries to regenerate the URL if CURLOPT_PORT is set. I tried to fix the problem as follows and it's working fine so far | |||
2007-02-27 | Added "CSOURCES = $(CURL_SOURCES)". | Gisle Vanem | |
2007-02-27 | Added TOPDIR variable. Put dependencies in external file. | Gisle Vanem | |
Added -DHAVE_STRUCT_TIMEVAL to CFLAGS. | |||
2007-02-27 | Remove $(CURL_SOURCES). | Gisle Vanem | |
2007-02-27 | Added TOPDIR variable. Put dependencies in external file. | Gisle Vanem | |
config.h includes ../lib/config.dos. | |||
2007-02-27 | Added TOPDIR variable. Put dependencies in external file. | Gisle Vanem | |
2007-02-27 | Added TOPDIR variable. Updated package locations. | Gisle Vanem | |
Simplified dependency generation. | |||
2007-02-27 | HTTP Digest header parsing fix | Daniel Stenberg | |
2007-02-27 | Somewhat updated, changes include: I tried to be more agnostic about the | Daniel Stenberg | |
specific SSL library that might be used, and I cut out the closepolicy stuff that we no longer support | |||
2007-02-27 | no proxy support if libcurl is built with HTTP disabled | Yang Tse | |
2007-02-26 | Jose Kahan pointed out a Digest server that provided the algorith last in the | Daniel Stenberg | |
header line without quotes and with a CRLF immediately following... | |||
2007-02-26 | Removed inclusion of <sys/types.h> in .c-files | Gisle Vanem | |
since it's already included through "setup.h". | |||
2007-02-26 | Removed inclusion of <sys/types.h> and <sys/stat.h> in .c-files | Gisle Vanem | |
since they're already included through "setup.h". | |||
2007-02-26 | Removed unneeded 'HAVE_x' defines. | Gisle Vanem | |
2007-02-26 | Fix typo. | Gisle Vanem | |
2007-02-25 | Constify some arguments. | Gisle Vanem | |
2007-02-25 | Use dynamic version of libcurl. Use '\' in dependencies. | Gisle Vanem | |
2007-02-25 | Two new mirrors, but the total amount of mirrors still don't go up very much | Daniel Stenberg | |
due to the frequent dying of mirrors... | |||
2007-02-25 | - Adam D. Moss made the HTTP CONNECT procedure less blocking when used from | Daniel Stenberg | |
the multi interface. Note that it still does a part of the connection in a blocking manner. | |||
2007-02-23 | Works for me | Daniel Stenberg | |
2007-02-23 | - Added warning outputs if the command line uses more than one of the options | Daniel Stenberg | |
-v, --trace and --trace-ascii, since it could really confuse the user. Clarified this fact in the man page. | |||
2007-02-22 | setting CURLOPT_PROXY to "" explicitly disables the use of a proxy (even if | Daniel Stenberg | |
there is an environment variable set) | |||
2007-02-22 | 5 seconds isn't always enough time to start a server on a loaded system. | Dan Fandrich | |
2007-02-22 | remove redundant check in timestamp detection | Yang Tse | |
2007-02-22 | include <sys/types.h> when checking availability of the bool type | Yang Tse | |
2007-02-22 | compiler warning fix | Yang Tse | |
2007-02-22 | Fix compiler warning "statement is unreachable" | Yang Tse | |
2007-02-22 | Fix compiler warnings | Yang Tse | |
"case label value exceeds maximum value for type" and "comparison is always false due to limited range of data type" Both triggered when using a bool variable as the switch variable in a switch statement and using enums for the case targets. | |||
2007-02-22 | Check for stdbool.h at configuration stage, and include it if available. | Yang Tse | |
Check for lowercase 'bool' type at configuration stage. If not available provide a suitable replacement with a type definition of 'unsigned char' in setup_once.h Move definitions of TRUE and FALSE to setup_once.h | |||
2007-02-21 | silence two cases of "comparison between signed and unsigned" | Daniel Stenberg | |
2007-02-21 | - Ravi Pratap provided work on libcurl making pipelining more robust and | Daniel Stenberg | |
fixing some bugs: o Don't mix GET and POST requests in a pipeline o Fix the order in which requests are dispatched from the pipeline o Fixed several curl bugs with pipelining when the server is returning chunked encoding: * Added states to chunked parsing for final CRLF * Rewind buffer after parsing chunk with data remaining * Moved chunked header initializing to a spot just before receiving headers | |||
2007-02-21 | curlassert macro replaced with DEBUGASSERT macro defined in setup_once.h | Yang Tse | |
2007-02-21 | Include some possible dependencies of arpa/inet.h | Dan Fandrich | |
2007-02-21 | Cleanup WIN32 target using WSACleanup(). | Gisle Vanem | |
2007-02-21 | fix compiler warning "enumerated type mixed with another type" | Yang Tse | |
2007-02-20 | New FTP CCC functionality - adds passive and active mode to accomodate for ↵ | Linus Nielsen Feltzing | |
different server behaviour | |||
2007-02-20 | New FTP CCC functionality - adds passive and active mode to accomodate for ↵ | Linus Nielsen Feltzing | |
different server behaviour | |||
2007-02-20 | Include network byte order conversion macros on Minix. | Dan Fandrich | |
2007-02-20 | compiler warning fix | Yang Tse | |
2007-02-20 | compiler warning fix | Yang Tse | |