Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-11 | new attempt at an improved DSP-file generation | Daniel Stenberg | |
2004-05-10 | Moved the fetching of the list of matching cookies to make it easier to free | Daniel Stenberg | |
that list in case something goes wrong in the function and we must bail out. Courtesy of the torture testing. | |||
2004-05-10 | curl_slist_append() fixed to clear up properly if a memory function fails | Daniel Stenberg | |
2004-05-10 | if a malloc fails, clear up the memory and return failure | Daniel Stenberg | |
2004-05-10 | typo | Daniel Stenberg | |
2004-05-10 | the aprintf() versions now return NULL if _any_ alloc along the way failed, | Daniel Stenberg | |
previously they could return a piece of the string, making it impossible for the caller to detect errors. | |||
2004-05-10 | better detection for when add_buffer() returns failure, and return when that | Daniel Stenberg | |
happens | |||
2004-05-10 | Curl_hash_add() was modified to clear up better in case of internal failure. | Daniel Stenberg | |
When failing, it should not tamper at all with the data it was supposed to add to the cache. | |||
2004-05-10 | make Curl_llist_insert_next() fail properly if malloc() fails | Daniel Stenberg | |
2004-05-10 | better checking that strdup() works | Daniel Stenberg | |
2004-05-10 | Luca fixed the nc= in the digest line since it apparantly should not have | Daniel Stenberg | |
quotes... | |||
2004-05-10 | James Bursa added better error checking for failer memory calls when | Daniel Stenberg | |
building formposts | |||
2004-05-10 | build curllib.dsp from these | Daniel Stenberg | |
2004-05-07 | James Bursa changed two error message to use the display-name instead of the | Daniel Stenberg | |
internally-used name. | |||
2004-05-07 | We don't support any long protocol names so we can use a smaller buffer. | Daniel Stenberg | |
Also, make sure we have room for the trailing zero, only scan to size-1. Gisle Vanem reported. | |||
2004-05-07 | count the formdata size using a 64bit size if avaialble | Daniel Stenberg | |
2004-05-07 | don't use a magic define name | Daniel Stenberg | |
2004-05-07 | This file is now generated at dist-time. | Daniel Stenberg | |
2004-05-07 | Generate curllib.dsp on dist.time from msvcproj.head msvcproj.foot and the | Daniel Stenberg | |
known source files. Not actually verified to work yet. | |||
2004-05-07 | get the display host name properly | Daniel Stenberg | |
2004-05-06 | removed two odd comments | Daniel Stenberg | |
2004-05-06 | Michael Benedict brought a fix that fills in the errorbuffer properly | Daniel Stenberg | |
when ares fails to resolve a name. This was fixed before but somehow has fallen out again! | |||
2004-05-06 | if no strerror_r prototype is found, we provide our own to prevent picky | Daniel Stenberg | |
compilers to warn | |||
2004-05-06 | removed the unused 'len' variable, made use of the ptr pointer even if no | Daniel Stenberg | |
extra lib is used to prevent compiler warnings ("variable set but not used") on that case | |||
2004-05-06 | typecast the unsigned long to plain long to prevent compiler warnings | Daniel Stenberg | |
2004-05-06 | unused variable removed | Daniel Stenberg | |
2004-05-06 | use %ld to printf now.tv_sec | Daniel Stenberg | |
2004-05-06 | curlx.h is a header to add to the release archive(s) | Daniel Stenberg | |
2004-05-05 | hm, avoid division by zero more carefully with that new percentage math | Daniel Stenberg | |
2004-05-05 | Joe Halpin fixed the warning on the typecast from data pointer to function | Daniel Stenberg | |
pointer! | |||
2004-05-05 | Gisle fixed the percentage to work, I adjusted it slightly to not as easily | Daniel Stenberg | |
overflow on 32bit filesize-systems | |||
2004-05-05 | Gisle-fix: constified the 'interface' argument. | Daniel Stenberg | |
2004-05-05 | Gisle fix: curl_formparse is gone. | Daniel Stenberg | |
2004-05-05 | Gisle fixed: don't reference 'mem' if it's NULL. | Daniel Stenberg | |
2004-05-05 | initiate variables properly to default to no auth for server and proxy | Daniel Stenberg | |
2004-05-05 | made the progress meter display not overflow even if _very_ large files | Daniel Stenberg | |
are transfered. The maximum size we support now is 8 exabytes, which equals to 8192 petabytes... | |||
2004-05-05 | if the values allow it, avoid floting point math for the current speed | Daniel Stenberg | |
2004-05-05 | do the alarm time-left math using unsigned longs since that is what alarm() | Daniel Stenberg | |
returns and uses as input and converting to signed generates warnings and actually risks loss of accuracy | |||
2004-05-05 | fix_hostname() now (void)s the conn argument to prevent warnings on non-idn | Daniel Stenberg | |
enabled builds | |||
2004-05-05 | ERR_error_string() returns an unsigned long so we should use one of those | Daniel Stenberg | |
for the return code | |||
2004-05-05 | prevent warnings when using the gcc option -Wunreachable-code | Daniel Stenberg | |
2004-05-05 | make the memlimit final NULL return get written to stderr as wella | Daniel Stenberg | |
2004-05-04 | bail out when an add_buffer() function returns failure | Daniel Stenberg | |
2004-05-04 | improved the cleaning up of memory when we fail to resolve names due to | Daniel Stenberg | |
out of memory (thanks to 'runtests.pl -t') | |||
2004-05-04 | check malloc() return code | Daniel Stenberg | |
2004-05-04 | removed more leftovers from the formparse function | Daniel Stenberg | |
2004-05-04 | removed curl_formparse() from the library | Daniel Stenberg | |
2004-05-04 | General HTTP authentication cleanup and fixes | Daniel Stenberg | |
2004-05-03 | Gisle fixed the problem with ldap_search_s() fails with "filter error": a case | Daniel Stenberg | |
of using 'lud_filter' after freeing 'lud_dn'. | |||
2004-05-03 | Gisle Vanem: | Daniel Stenberg | |
Patch for ldap.c under Windows. It works with wldap32.dll as supplied with Win-98/ME/2000/XP, so no extra .dlls are required. I've mostly tested it against Verisign's ldap server. Added code in the case there are to many responses (rc = LDAP_SIZELIMIT_EXCEEDED) and print only those we got. E.g. curl ldap://directory.verisign.net/?cn,display-name,mail,info?subtree?(cn=*Nelson*) will print the first 10 results. My only problem with it is that ldap_search_s() fails with "filter error" when CURLDEBUG is defined ?! Maybe someone can spot the error. |