| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Adding more strict compile Warning flags to gcc build | Alan Antonuk | 2012-05-24 | 1 | -1/+4 |
| | | | | | | | | | Added: -Wall -Wextra -pedantic -Wstrict-prototypes -Wcast-align -Wno-unused-function -fno-common -fvisibility=hidden The library compiles cleanly with the exception of the tools dir which has trouble with the initializer lists | ||||
| * | Fix compiler warnings (checked clang & gcc) | Michael Steinert | 2012-05-17 | 1 | -4/+5 |
| | | | | | Signed-off-by: Michael Steinert <mike.steinert@gmail.com> | ||||
| * | Add config.h header guards | Michael Steinert | 2012-05-17 | 1 | -0/+2 |
| | | | | | Signed-off-by: Michael Steinert <mike.steinert@gmail.com> | ||||
| * | Automated relicensing of source files MPL/GPL -> MIT | Marek Majkowski | 2012-04-12 | 1 | -26/+20 |
| | | |||||
| * | Update copyright 2012 | Emile Joubert | 2012-02-02 | 1 | -1/+1 |
| | | |||||
| * | Add amqp URL support to the toolsbug24440 | David Wragg | 2011-09-21 | 1 | -28/+119 |
| | | |||||
| * | die_errno should use the err parameter, not errno | David Wragg | 2011-07-05 | 1 | -1/+1 |
| | | |||||
| * | Remove trailing whitespace | David Wragg | 2011-07-05 | 1 | -14/+14 |
| | | |||||
| * | Update copyright notices | David Wragg | 2011-03-01 | 1 | -19/+7 |
| | | | | | And generally bring debian/copyright up to date. | ||||
| * | Eliminate the AMQP_EMPTY_* macros from amqp.h | David Wragg | 2010-10-21 | 1 | -1/+1 |
| | | | | | Hooray, amqp.h is now ISO C90 clean. | ||||
| * | Harmonize uses of die_amqp_error: it now expects the result code, with ↵bug23163 | Tony Garnock-Jones | 2010-08-20 | 1 | -6/+6 |
| | | | | | negative meaning error | ||||
| * | Fix "const char *" to "void *" conversion warnings | David Wragg | 2010-07-28 | 1 | -2/+2 |
| | | | | | | | | | 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 strings | David Wragg | 2010-07-27 | 1 | -6/+13 |
| | | | | | Even though we are about to exit anyway. | ||||
| * | Fold amqp_end_connection socket closing into amqp_destroy_connection | David Wragg | 2010-07-26 | 1 | -1/+1 |
| | | |||||
| * | A Windows port, using MinGW/MSYS | David Wragg | 2010-05-30 | 1 | -56/+3 |
| | | |||||
| * | Make error codes returned by librabbitmq functions opaque | David Wragg | 2010-05-30 | 1 | -30/+24 |
| | | | | | | | | | | | | | | 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 connection | David Wragg | 2010-05-30 | 1 | -6/+5 |
| | | |||||
| * | Move all includes of popt.h into common.h, which depends on it anyway | David Wragg | 2010-05-30 | 1 | -2/+0 |
| | | |||||
| * | Add docbook-based man pages for tools | David Wragg | 2010-05-25 | 1 | -1/+1 |
| | | |||||
| * | Move the common_consume code into consume.c | David Wragg | 2010-05-25 | 1 | -1/+1 |
| | | | | | | | 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. | ||||
| * | amqp-consume should display usage info when the command is omitted. | David Wragg | 2010-02-23 | 1 | -4/+3 |
| | | |||||
| * | Add license block | David Wragg | 2010-02-21 | 1 | -0/+50 |
| | | |||||
| * | Command line AMQP tools based on rabbitmq-c | David Wragg | 2010-02-20 | 1 | -0/+364 |
