Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-08-24 | add missing semicolons | Yang Tse | |
2011-08-24 | base64: fix Curl_base64_encode and Curl_base64_decode interfaces | Yang Tse | |
Previous interfaces for these libcurl internal functions did not allow to tell apart a legitimate zero size result from an error condition. These functions now return a CURLcode indicating function success or otherwise specific error. Output size is returned using a pointer argument. All usage of these two functions, and others closely related, has been adapted to the new interfaces. Relative error and OOM handling adapted or added where missing. Unit test 1302 also adapted. | |||
2011-07-26 | stdio.h, stdlib.h, string.h, stdarg.h and ctype.h inclusion done in setup_once.h | Yang Tse | |
2011-07-04 | code style: space between close paren and open brace | Daniel Stenberg | |
2011-04-27 | source cleanup: unify look, style and indent levels | Daniel Stenberg | |
By the use of a the new lib/checksrc.pl script that checks that our basic source style rules are followed. | |||
2010-11-13 | urldata: Capitalize enum protect_level values. | Julien Chaffraix | |
This makes it easier to spot the enum values from the variables. Removed some unneeded DEBUGASSERT added in the previous commit. | |||
2010-11-13 | security: tighten enum protection_level usage. | Julien Chaffraix | |
While changing Curl_sec_read_msg to accept an enum protection_level instead of an int, I went ahead and fixed the usage of the associated fields. Some code was assuming that prot_clear == 0. Fixed those to use the proper value. Added assertions prior to any code that would set the protection level. | |||
2010-10-18 | krb4: make a few functions static | Daniel Stenberg | |
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2009-04-21 | libcurl's memory.h renamed to curl_memory.h | Yang Tse | |
2008-11-16 | fix OOM problem reported by Jim Meyering | Daniel Stenberg | |
2008-09-23 | Replace inet_ntoa and inet_ntoa_r with Curl_inet_ntop | Yang Tse | |
2008-08-17 | libcurl internal base64.h header file renamed to curl_base64.h | Yang Tse | |
2008-05-09 | - Make Curl_write and it's callees accept a const pointer, in preparation | Michal Marek | |
of tetetest's patch for curl_easy_send() | |||
2008-01-15 | Calls to Curl_failf() are not supposed to provide a trailing newline as the | Daniel Stenberg | |
function itself adds that. Fixed on 50 or something strings! | |||
2007-11-07 | if () => if() | Daniel Stenberg | |
while () => while() and some other minor re-indentings | |||
2007-01-03 | - David McCreedy made changes to allow base64 encoding/decoding to work on | Daniel Stenberg | |
non-ASCII platforms. | |||
2006-01-26 | updated source header | Daniel Stenberg | |
2005-03-14 | Removed security.h since it shadows an include file mingw needs when building | Daniel Stenberg | |
for SSPI support. The contents of the file has been moved into the krb4.h file. | |||
2005-02-22 | krb4 fixed | Daniel Stenberg | |
2005-02-22 | Curl_base64_decode() now returns an allocated buffer | Daniel Stenberg | |
2004-11-11 | Dan Fandrich added --disable-verbose | Daniel Stenberg | |
2004-10-06 | removed tabs and trailing whitespace from source | Daniel Stenberg | |
2004-06-24 | Source cleanups. The major one being that we now _always_ use a Curl_addrinfo | Daniel Stenberg | |
linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code. | |||
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-28 | the new way of accessing the host name | Daniel Stenberg | |
2004-02-23 | fixed some warnings in the (both new and old) base64 usage | Daniel Stenberg | |
2004-02-21 | inlcude krb4.h to get the proto for Curl_krb_kauth() to satisfy picky | Daniel Stenberg | |
compilers | |||
2003-12-04 | based on Gisle's comment, I removed the use of syslog() and fixed the | Daniel Stenberg | |
netdb.h include, then I re-indented some code to use curl-style | |||
2003-12-02 | use the HAVE_KRB4 define instead of just KRB4 | Daniel Stenberg | |
2003-11-24 | adjusted code to the new socket fields in the sessionhandle struct | Daniel Stenberg | |
2003-07-21 | krb4-fixes for the moved user+password fields within the structs | Daniel Stenberg | |
2003-07-19 | Access the user and passwd fields from the connectdata struct now instead | Daniel Stenberg | |
of the sessionhandle struct, as that was not good. | |||
2003-06-26 | use CURLDEBUG instead of MALLOCDEBUG for preprocessor conditions | Daniel Stenberg | |
2003-01-29 | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | |
way for emacs, and vim users should provide a similar non-polluting style | |||
2003-01-27 | Removed the long-living compiler warnings on the des_pcbc_encrypt() function | Daniel Stenberg | |
calls! | |||
2002-12-03 | Curl_GetFTPResponse() takes a different set of parameters and now return a | Daniel Stenberg | |
proper CURLcode. The default timeout for reading one response is now also possible to change while running. | |||
2002-06-11 | added disable-[protocol] support, largely provided by Miklos Nemeth | Daniel Stenberg | |
2002-04-25 | use the hostname pointer instead of using IPv4-only info from a struct | Daniel Stenberg | |
2002-01-04 | fixed an inet_ntoa() occurance to use inet_ntoa_r() if it is available. | Daniel Stenberg | |
I also replaced all printf() calls with calls to Curl_failf() | |||
2001-12-11 | failf() calls should not have newlines in the message string! | Daniel Stenberg | |
2001-10-31 | check Curl_ftpsendf return codes | Daniel Stenberg | |
2001-10-11 | looks nicer and is better compatible with older vim versions | Sterling Hughes | |
2001-10-01 | sessionhandle->hp => hostaddr | Daniel Stenberg | |
2001-09-28 | fixed the missing getftpresponse edits | Daniel Stenberg | |
2001-09-28 | removed the socket argument from some functions that always passed in the | Daniel Stenberg | |
same socket and it was available from the passed-in struct anyway! | |||
2001-09-07 | Added formatting sections for emacs and vim | Sterling Hughes | |
2001-08-30 | a few more struct fixes | Daniel Stenberg | |
2001-08-30 | Major rename and redesign of the internal "backbone" structs. Details will | Daniel Stenberg | |
be posted in a minute to the libcurl list. | |||
2001-08-17 | Curl_ prefix added to a few function calls | Daniel Stenberg | |