Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-30 | Move curl_dofreeaddrinfo() and curl_dofreeaddrinfo() | Yang Tse | |
implementation from lib/hostip6.c to lib/curl_addrinfo.c and prototypes from lib/hostip.h to lib/curl_addrinfo.h | |||
2008-10-30 | remove bogus whitespace | Yang Tse | |
2008-10-30 | These two variables are now Curl_addrinfo pointers | Yang Tse | |
2008-10-30 | remove bogus comment | Yang Tse | |
2008-10-30 | Use our Curl_addrinfo definition even when an addrinfo struct is available. | Yang Tse | |
Use a wrapper function to call system's getaddrinfo(). | |||
2008-10-29 | Fixed a bug that caused a few bytes of garbage to be sent after a | Dan Fandrich | |
curl_easy_pause() during a chunky upload. Reported by Steve Roskowski. | |||
2008-10-28 | added an extra set of braces to unconfuse emacs and then I re-indented a | Daniel Stenberg | |
section of the code that was odd-looking previously | |||
2008-10-27 | add null-pointer check | Yang Tse | |
2008-10-25 | add missing header inclusions | Yang Tse | |
2008-10-25 | Added experimental support for zlib and OpenSSL on Symbian OS. | Dan Fandrich | |
2008-10-25 | add missing header inclusions | Yang Tse | |
2008-10-24 | Stop using in6addr_any because it's not available everywhere (e.g. Symbian) | Dan Fandrich | |
and isn't strictly needed here. | |||
2008-10-24 | fix compiler warning | Yang Tse | |
2008-10-24 | fix compiler warning | Yang Tse | |
2008-10-23 | Added rawstr.c to the non-configure libcurl makefiles | Dan Fandrich | |
2008-10-23 | moved the Curl_raw_ functions into the new lib/rawstr.c file for easier curlx_ | Daniel Stenberg | |
inclusion by the curl tool without colliding with the curl_strequal functions. | |||
2008-10-23 | added include to make the krb4 code compile again | Daniel Stenberg | |
2008-10-23 | Really old gcc doesn't like parenthesis around the names of functions that | Dan Fandrich | |
don't have prototypes. They didn't serve any useful purpose here, anyway. | |||
2008-10-23 | Created Curl_raw_nequal() which does a C-locale string case comparison. | Dan Fandrich | |
Changed checkprefix() to use it and those instances of strnequal() that compare host names or other protocol strings that are defined to be independent of case in the C locale. This should fix a few more Turkish locale problems. | |||
2008-10-22 | Fixed a compiler warning with --disable-proxy | Dan Fandrich | |
2008-10-22 | Changed some arrays of char* to arrays of char[] to reduce data size and | Dan Fandrich | |
run-time relocations. | |||
2008-10-21 | Compile away some more code in the CURL_DISABLE_PROXY case. | Dan Fandrich | |
2008-10-21 | Fixed some problems with SFTP range support to fix test cases 634 through 637. | Dan Fandrich | |
2008-10-20 | remove debug-code which zero-filled some structures before free()ing them | Yang Tse | |
2008-10-20 | A few prototypes shouldn't be defined if SSL is disabled. | Dan Fandrich | |
2008-10-20 | *** empty log message *** | Yang Tse | |
2008-10-20 | added a NULL pointer check for the name field as it can in fact be NULL when | Daniel Stenberg | |
dereferenced here, if the app passes in a funny combo. Detected by coverity.com | |||
2008-10-19 | fix compiler warning | Yang Tse | |
2008-10-19 | oops | Yang Tse | |
2008-10-19 | attempt to fix or allow further detection of an elusive icc SIGSEGV | Yang Tse | |
2008-10-19 | clarified an argument's situation due to a false positive alert pointed out | Daniel Stenberg | |
by coverity.com | |||
2008-10-19 | Fixed a compiler warning in the CURL_DISABLE_HTTP case | Dan Fandrich | |
2008-10-19 | attempt to fix compiler warning relative to potential misaligned data access | Yang Tse | |
2008-10-18 | Removed some more code in the CURL_DISABLE_HTTP case | Dan Fandrich | |
2008-10-18 | Removed a line of dead code (discovered by Coverity) | Dan Fandrich | |
2008-10-17 | Forgot it's a struct | Dan Fandrich | |
2008-10-17 | Fixed a compile error reported by Albert Chin on AIX and IRIX when using | Dan Fandrich | |
GTLS. | |||
2008-10-17 | protect against 'use after free' or race condition | Yang Tse | |
2008-10-17 | oops ;-) | Yang Tse | |
2008-10-17 | oops | Yang Tse | |
2008-10-17 | fix syntax error | Daniel Stenberg | |
2008-10-17 | fix compiler warning | Yang Tse | |
2008-10-17 | OOM condition fix | Yang Tse | |
2008-10-17 | remove some spurious line-endings | Yang Tse | |
2008-10-17 | portability fix to avoid memory alignment problems | Yang Tse | |
2008-10-16 | Return an error when a proxy option is set when configured with | Dan Fandrich | |
--disable-proxy mode. Removed some unnecessary prototypes. | |||
2008-10-16 | don't segfault when NULL is passed in to CURLOPT_USERPWD or | Daniel Stenberg | |
CURLOPT_PROXYUSERPWD | |||
2008-10-16 | - Igor Novoseltsev added CURLOPT_PROXYUSER and CURLOPT_PROXYPASSWORD that then | Daniel Stenberg | |
make CURLOPT_PROXYUSERPWD sort of deprecated. The primary motive for adding these new options is that they have no problems with the colon separator that the CURLOPT_PROXYUSERPWD option does. | |||
2008-10-16 | Renamed Curl_ascii_equal to Curl_raw_equal and bugfixed the my_toupper function | Daniel Stenberg | |
used in strequal.c so now all test cases run fine for me again. | |||
2008-10-16 | Curl_ascii_equal() must not assume that the string is actually ASCII (so ↵ | Daniel Stenberg | |
that a-z are consecutive and with a 0x20 "distance" to the uppercase letter), since we do support EBCDIC as well. Thus I replaced the macro with a (larger) switch case. I better change the function name... |