summaryrefslogtreecommitdiff
path: root/inc/string_buffer.h
Commit message (Collapse)AuthorAgeFilesLines
* * Undid my last change. Now I realize why you should only ever use spacesBryan Ischo2008-12-301-50/+50
| | | | | | | in code indentations (because it's impossible to get everything to line up if tabs of arbitrary width are used), and so I'm reverting back to spaces for everything.
* * tabify source, to fix the broken .emacs configuration I have been usingBryan Ischo2008-12-301-50/+50
| | | | | since forever (finally realized it was broken and fixed it today!)
* * Added -Wextra and -Wshadow compiler options, to enforce extra warnings, andBryan Ischo2008-10-081-2/+2
| | | | | | | | | | | | | | | fixed the code necessary to comply with these flags * Fixed a bug introduced in the 1.0 release, that caused last modified time not to be reported to callbacks * Changed the semantics of the put data callback, to only make the callback enough times to get enough data to satisfy the content length * Fixed the error status when curl doesn't get a valid HTTP response from S3 to be S3StatusConnectionFailed instead of S3StatusHttpErrorUnknown * Fixed a bug where S3_runall_request_context would stop even though a callback had added another request * libs3.h doesn't need sys/time.h anymore, it just needs sys/select.h * Some minor documentation enhancements
* * Incorporated fixes submitted by Bryan Donlan <bdonlan@gmail.com>:Bryan Ischo2008-08-111-2/+2
| | | | | | | | | | | | | | - Fixed missing return statement after error in S3_list_bucket - Fixed integer types in string functions - Added flags to S3_initialize(), and be sure to call curl_global_init() and curl_global_cleanup() * Changed s3 utility to use path-style URI as default, but to refuse to create a bucket which fails virtual-host-style validation unless the -f (--force) option is passed to s3 * Allow S3_initialize() to be called more than once with no side effects, as long as S3_deinitialize() is called the same number of times when libs3 is being shut down
* * Added Debian package build targetBryan Ischo2008-08-061-0/+4
| | | | | * Updated copyrights to give openssl exception
* * Added TODO and COPYINGBryan Ischo2008-07-291-14/+12
| | | | | * Updated copyrights to GPLv3
* * Work in progress - reorganized alot, completed list bucket, create bucket,Bryan Ischo2008-07-101-0/+105
delete bucket, test bucket