summaryrefslogtreecommitdiff
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* We were neglecting to free the constructed command linebug22825David Wragg2010-07-281-1/+3
| | | | And fix a tyop in an error message.
* Fix "const char *" to "void *" conversion warningsDavid Wragg2010-07-282-4/+4
| | | | | | | | Functions returning a heap-allocated string should return a "char *", not a "const char *": Because the result is heap-allocated and becomes the responsibility of the caller, it is certainly modifiable. And the pointer will likely get passed to free(), triggering a conversion warning from gcc. So remove all the relevant consts.
* Free heap-allocated error stringsDavid Wragg2010-07-271-6/+13
| | | | Even though we are about to exit anyway.
* Remove redundant includes of popt.hDavid Wragg2010-07-272-4/+0
|
* Fold amqp_end_connection socket closing into amqp_destroy_connectionDavid Wragg2010-07-261-1/+1
|
* More unix and windows support files in distributionsTony Garnock-Jones2010-06-061-0/+5
|
* Merge default into bug22825Tony Garnock-Jones2010-06-0612-120/+598
|\
| * Merge default into bug22825David Wragg2010-06-065-2/+441
| |\
| * | A Windows port, using MinGW/MSYSDavid Wragg2010-05-3010-69/+559
| | |
| * | Make error codes returned by librabbitmq functions opaqueDavid Wragg2010-05-304-38/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows doesn't generally use POSIX error codes, which poses a problem for librabbitmq's approach of using those error codes in its API. So make the librabbitmq error codes opaque: They are still be integers, but client code is not supposed to assume anything about them, except that they can be passed to a new amqp_error_string() function which returns the corresponding error message Internally, the error codes are either taken from a set of librabbitmq-specific values, or correspond to an OS-specific (POSIX or win32) error code, with a simple encoding to indicate which is which.
| * | Add amqp_end_connection, which closes the socket and destroys the connectionDavid Wragg2010-05-301-6/+5
| | |
| * | Move all includes of popt.h into common.h, which depends on it anywayDavid Wragg2010-05-305-8/+2
| | |
* | | Fix up clean rulesTony Garnock-Jones2010-06-061-4/+1
| | |
* | | Fix up packaging: xmlto was getting confused in build/source separationTony Garnock-Jones2010-06-062-41/+47
| |/ |/|
* | Fix packagingTony Garnock-Jones2010-06-061-0/+8
| |
* | Documentation for amqp-{declare,delete}-queuebug22805Tony Garnock-Jones2010-06-063-1/+227
| |
* | Merge default into bug22805Tony Garnock-Jones2010-06-063-1/+206
|\ \ | |/ |/|
| * Notice errors rather than sigsegv/sigbusTony Garnock-Jones2010-06-062-0/+6
| |
| * Declare and delete queue utilitiesTony Garnock-Jones2010-06-053-1/+200
| |
* | Add docbook-based man pages for toolsDavid Wragg2010-05-256-1/+542
| |
* | Move the common_consume code into consume.cDavid Wragg2010-05-257-232/+127
|/ | | | | | 95% of the options provided by the common_consume code don't actually make sense for amqp-get, and now I find myself documenting them, it seems more sensible to restrict them to amqp-consume.
* Fix make distcheckTony Garnock-Jones2010-03-071-1/+1
|
* amqp-consume should display usage info when the command is omitted.David Wragg2010-02-232-6/+6
|
* Add license blockDavid Wragg2010-02-217-0/+350
|
* Command line AMQP tools based on rabbitmq-cDavid Wragg2010-02-208-0/+741