aboutsummaryrefslogtreecommitdiff
path: root/src/writeout.c
AgeCommit message (Collapse)Author
2011-10-06curl tool: reviewed code moved to tool_*.[ch] filesYang Tse
2011-09-14curl tool: re-enable MemoryTracking capability on 'src' subdirectory files.Yang Tse
Use same preprocessor logic for curl tool MemoryTracking activation in source files located in 'src' subdirectory as the one used for libcurl sources.
2011-09-05fix bool variables checking and assignmentYang Tse
2011-07-26stdio.h, stdlib.h, string.h, stdarg.h and ctype.h inclusion done in setup_once.hYang Tse
2011-04-27checksrc: whitespace and code style cleanupDaniel Stenberg
Make everything adhere to the standards upheld by checksrc.pl and now run checksrc from the makefile on debug builds.
2010-03-24remove the CVSish $Id$ linesDaniel Stenberg
2009-09-16Attempt to silence bogus compiler warning: "Potential null pointer ↵Yang Tse
dereference through ptr is detected"
2009-09-16Attempt to silence bogus compiler warning: "Potential null pointer ↵Yang Tse
dereference through ptr is detected"
2008-07-30- Made the curl tool's -w option support the %{ssl_verify_result} variableDaniel Stenberg
2008-07-03Introcuding a new timestamp for curl_easy_getinfo():Daniel Stenberg
CURLINFO_APPCONNECT_TIME. This is set with the "application layer" handshake/connection is completed (typically SSL, TLS or SSH). By using this you can figure out the application layer's own connect time. You can extract the time stamp using curl's -w option and the new variable named 'time_appconnect'. This feature was sponsored by Lenny Rachitsky at NeuStar.
2008-04-30- To make it easier for applications that want lots of magic stuff done onDaniel Stenberg
redirections and thus cannot use CURLOPT_FOLLOWLOCATION easily, we now introduce the new CURLINFO_REDIRECT_URL option that lets applications extract the URL libcurl would've redirected to if it had been told to. This then enables the application to continue to that URL as it thinks is suitable, without having to re-implement the magic of creating the new URL from the Location: header etc. Test 1029 verifies it.
2008-04-17Some trivial changesDan Fandrich
2006-03-21David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry pathDaniel Stenberg
2006-02-23Fixed typo, the option is called --write-out. Bob Bagwill pointed out.Daniel Stenberg
2005-09-06Now curl warns if an unknown variable is used in the -w/--writeout argument.Daniel Stenberg
2004-12-21Added test case 217 that verified CURLINFO_HTTP_CONNECTCODE, and I made theDaniel Stenberg
-w option support 'http_connect' to make it easier to verify!
2004-12-15Add 'const' to immutable arrays.Dan Fandrich
2004-11-15new -w variables supportedDaniel Stenberg
2004-10-19CURLINFO_NUM_CONNECTS and moreDaniel Stenberg
2004-07-26removed trailing whitespaceDaniel Stenberg
2004-05-05slightly odd fix to prevent -Wunreachable-code to warnDaniel Stenberg
2004-02-25use %ld when printfing longsDaniel Stenberg
2004-02-09use VAR_NONE instead of 0 in the table to prevent compiler warningDaniel Stenberg
2004-01-29make pedantic compiler options generate less warningsDaniel Stenberg
2004-01-07updated year in the copyright stringDaniel Stenberg
2003-08-20CURLINFO_RESPONSE_CODE replaces CURLINFO_HTTP_CODEDaniel Stenberg
2003-02-28the strequal and strnequal should now be called with the proper curl_ prefixDaniel Stenberg
2003-01-16copyright year update in the source headerDaniel Stenberg
2002-09-03updated source code boilerplate/headerDaniel Stenberg
2002-07-30When CURLINFO_CONTENT_TYPE returns a NULL pointer, don't try to fputs() it!Daniel Stenberg
2002-05-17FreeBSD needs sys/types.h before we include sys/select.h that was includedDaniel Stenberg
mainly for AIX in the first place...! As reported in bug report #556869
2002-05-10AIX wants sys/select.h for the fd_set stuff in curl/multi.h, and even thoughDaniel Stenberg
it is a bit ugly work-around to add this here, it is still a working work- around! ;-)
2002-03-19copyright string (year) updateDaniel Stenberg
2002-02-25"Yet Another Geek" made %{content_type} work in the -w/--writeout option.Daniel Stenberg
2001-11-20Georg Horn's STARTTRANSFER_TIME patchDaniel Stenberg
2001-08-14(un)signed and const cleanupDaniel Stenberg
2001-04-19A Linus Nielsen Feltzing-patch that removes the decimals from the sizeDaniel Stenberg
outputs...
2001-03-14removed the two unnecessary include filesDaniel Stenberg
2001-01-03dual-license fixDaniel Stenberg
2000-11-21removed pedantic compiler warningsDaniel Stenberg
2000-10-04-w supports size_header and size_requestDaniel Stenberg
2000-10-02moved out from the library and put here, uses the new curl_easy_getinfo()Daniel Stenberg