Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-08-10 | added "5.8 libcurl.so.3: open failed: No such file or directory" and made | Daniel Stenberg | |
some general cleanups | |||
2004-08-10 | In OpenSSL 0.9.7d and earlier, ASN1_STRING_to_UTF8 fails if the input is | Daniel Stenberg | |
already UTF-8 encoded. We check for this case and copy the raw string manually to avoid the problem. This code can be made conditional in the future when OpenSSL has been fixed. Work-around brought by Alexis S. L. Carvalho. | |||
2004-08-10 | more typecasts to please picky compilers | Daniel Stenberg | |
2004-08-09 | version string, krb4 link fix, added number of web mirrors and libcurl bindings | Daniel Stenberg | |
2004-08-09 | GSS/Kerberos 5 for ftp | Daniel Stenberg | |
2004-08-09 | added info about my current idea about option separation between URLs on | Daniel Stenberg | |
the command line | |||
2004-08-09 | adding notes for 7.12.2 now, 7.12.1 is removed due to release ANY DAY NOW | Daniel Stenberg | |
2004-08-09 | --negotiate does not work without username/password, bug report #1004841 | Daniel Stenberg | |
2004-08-09 | the krb4 stuff needs -lcom_err to link now, for some odd reason. This is | Daniel Stenberg | |
possibly only on some platforms, but it happens on my Solaris 2.7 box and I don't know anyone else that regularly build curl with krb4 support. | |||
2004-08-09 | typecast the assigment of an unsigned variable to a signed one to prevent | Daniel Stenberg | |
picky warnings | |||
2004-08-09 | ->fread() should get a size_t variable passed in | Daniel Stenberg | |
2004-08-09 | made telrcv() take a ssize_t argument instead of int to better match other | Daniel Stenberg | |
functions (and prevent warnings) | |||
2004-08-09 | mention the new cool CA extraction way just documented | Daniel Stenberg | |
2004-08-06 | new web mirror | Daniel Stenberg | |
2004-08-05 | negotiate fix and new glib/GTK+ binding | Daniel Stenberg | |
2004-08-05 | Enrico Scholz fixed the service name to be uppercase as reported in bug | Daniel Stenberg | |
report #1004105 | |||
2004-08-04 | multi-connect fix and cookie domain fix | Daniel Stenberg | |
2004-08-04 | Fixed multiple IP connects with the multi interface. This fix is influenced | Daniel Stenberg | |
by Gisle Vanem's patch, only modified by me. | |||
2004-08-04 | Dylan Salisbury's fix to prevent us from accepting cookies from TLD only | Daniel Stenberg | |
2004-07-31 | borland is already mentioned | Daniel Stenberg | |
2004-07-31 | mention this is new | Daniel Stenberg | |
2004-07-31 | link to reset as well | Daniel Stenberg | |
2004-07-31 | curl_easy_reset() documented | Daniel Stenberg | |
2004-07-31 | digest fix | Daniel Stenberg | |
2004-07-31 | Joel Chen reported that we assumed content within quotes a bit too much in | Daniel Stenberg | |
the digest code. This fixes it. | |||
2004-07-29 | prevent all the sig and alarm stuff when using ares | Daniel Stenberg | |
2004-07-29 | fix a mingw32 build warning | Daniel Stenberg | |
2004-07-29 | mingw32 builds make .a libs | Daniel Stenberg | |
2004-07-29 | added typecast in an attempt to fix a mingw32 warning | Daniel Stenberg | |
2004-07-29 | additional typecasts to please MIPSPro on 64bit IRIX | Daniel Stenberg | |
2004-07-29 | oops, curl_easy_reset is a void | Daniel Stenberg | |
2004-07-29 | variable type fix | Daniel Stenberg | |
2004-07-29 | provide a curl_easy_reset() proto | Daniel Stenberg | |
2004-07-29 | removed C++ comment to please picky source checkers | Daniel Stenberg | |
2004-07-28 | fixes! | Daniel Stenberg | |
2004-07-28 | curl_easy_reset was added | Daniel Stenberg | |
2004-07-28 | Bertrand Demiddelaer fixed the host name to get setup properly even when | Daniel Stenberg | |
a connection is re-used, when a proxy is in use. | |||
2004-07-28 | Fixes Brian Akins' reported problems with duplicate Host: headers on re-used | Daniel Stenberg | |
connections. | |||
2004-07-28 | use Makefile.inc and make it get included in dist archives | Daniel Stenberg | |
2004-07-28 | renamed CURL_HEADERS, since it is a magic automake name we must not use | Daniel Stenberg | |
2004-07-26 | Bertrand Demiddelaer made the testing work with valgrind 2.1 | Daniel Stenberg | |
2004-07-26 | Bertrand Demiddelaer fixed two missing newlines | Daniel Stenberg | |
2004-07-26 | -o #[num] fix | Daniel Stenberg | |
2004-07-26 | using #[num] with -o now make it literally used if there's no globbing for | Daniel Stenberg | |
that particular index. Reported in bug report 997536. | |||
2004-07-26 | removed trailing whitespace | Daniel Stenberg | |
2004-07-25 | libs built with libtool are named .la in the build dir | Daniel Stenberg | |
2004-07-24 | --enable-debug builds static only, Gisle fixed a memory leak and more | Daniel Stenberg | |
2004-07-24 | Gisle Vanem: | Daniel Stenberg | |
Basically in loops like handle_errors(), 'query->next' was assigned a local variable and then query was referenced after the memory was freed by next_server(). I've changed that so next_server() and end_query() returns the next query. So callers should use this ret-value. The next problem was that 'server->tcp_buffer_pos' had a random value at entry to 1st recv() (luckily causing Winsock to return ENOBUFS). I've also added a ares_writev() for Windows to streamline the code a bit more. | |||
2004-07-24 | autobuilds with ares and curl_easy_reset() | Daniel Stenberg | |
2004-07-24 | curl_easy_reset() added. Need testing and docs. I also think we should make | Daniel Stenberg | |
the initial setting up the struct should use this single function to avoid having the initialisation code at two places. |