summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix packagingTony Garnock-Jones2010-06-061-0/+8
| |
* | Merge bug22805 into defaultTony Garnock-Jones2010-06-060-0/+0
|\ \
* | | Documentation for amqp-{declare,delete}-queuebug22805Tony Garnock-Jones2010-06-063-1/+227
| | |
* | | Merge default into bug22805Tony Garnock-Jones2010-06-065-1/+225
|\ \ \ | |/ / | | / | |/ |/|
| * Notice errors rather than sigsegv/sigbusTony Garnock-Jones2010-06-062-0/+6
| |
| * Declare and delete queue utilitiesTony Garnock-Jones2010-06-053-1/+200
| |
| * Added amqp_queue_delete to APITony Garnock-Jones2010-06-052-0/+19
| |
* | Add docbook-based man pages for toolsDavid Wragg2010-05-2510-3/+563
| |
* | 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.
* Compute dependencies properlyTony Garnock-Jones2010-05-241-1/+1
|
* Package for amqp-toolsTony Garnock-Jones2010-05-244-2/+13
|
* Only allocate and check if we would ask for more than zero bytesTony Garnock-Jones2010-04-201-3/+6
|
* Update packaging to not fail on karmicTony Garnock-Jones2010-04-193-7/+6
|
* Remove note about amqp_pool_alloc.Tony Garnock-Jones2010-04-161-2/+0
|
* Check results of amqp_pool_alloc() and friends.Tony Garnock-Jones2010-04-164-3/+36
|
* Note about amqp_pool_allocTony Garnock-Jones2010-04-161-0/+2
|
* Move instructions for 0-9-1 to the end, and explain a little more.Tony Garnock-Jones2010-04-161-13/+22
|
* Use writev(2) instead of 3 write(2)sTony Garnock-Jones2010-04-151-8/+13
|
* Add TX select, commit, rollbackTony Garnock-Jones2010-03-302-2/+39
|
* Include stdint.h in generated C. HT @geoffgarside.Tony Garnock-Jones2010-03-301-0/+1
|
* Fix make distcheckTony Garnock-Jones2010-03-072-2/+2
|
* Added tag librabbitmq-0.1-amqp_0_8 for changeset ce1eaceaee94Tony Garnock-Jones2010-02-260-0/+0
|
* Merge bug22346 into defaultlibrabbitmq-0.1-amqp_0_8Tony Garnock-Jones2010-02-2511-3/+1130
|\
| * Merge bug22390 into defaultTony Garnock-Jones2010-02-240-0/+0
| |\
| * | Add a configure check to make sure that we have the popt.h headerbug22390David Wragg2010-02-231-0/+7
| | |
| * | amqp-consume should display usage info when the command is omitted.David Wragg2010-02-232-6/+6
| | |
| * | Merge default into bug22390David Wragg2010-02-2111-3/+1123
| |\ \ | | |/ | |/|
| | * Add license blockDavid Wragg2010-02-217-0/+350
| | |
| | * Command line AMQP tools based on rabbitmq-cDavid Wragg2010-02-2011-3/+773
| | |
* | | Update debian bits for dual licensingbug22346David Wragg2010-02-233-6/+9
|/ /
* | Update licensing to dual MPL/GPLTony Garnock-Jones2010-02-2122-32/+1341
|/
* Fix small memory leak. Thanks to Noah Fontes for noticing and supplying a patch.Tony Garnock-Jones2010-02-181-0/+4
|
* Note in the README the lack of support for pthreadsTony Garnock-Jones2010-02-181-0/+20
|
* Remove amqp_rpc_reply global variable, making it instead state-localTony Garnock-Jones2010-02-1811-42/+48
| | | | | | and accessible only through amqp_get_rpc_reply(). Add a better comment on amqp_get_rpc_reply() to be a little clearer about when it's inappropriate to use it.
* Reindent without changing anything.Tony Garnock-Jones2010-02-181-15/+15
|
* Pay attention to result of amqp_login_innerTony Garnock-Jones2010-02-181-1/+9
|
* Expand README significantly.Tony Garnock-Jones2010-02-171-2/+80
|
* Work harder for a sane PYTHON default.Tony Garnock-Jones2010-02-162-2/+23
|
* Add "autogenerated code" comment to codegen.Tony Garnock-Jones2010-01-121-1/+4
|
* Pass raw properties alongTony Garnock-Jones2010-01-092-0/+2
|
* Add amqp_constant_name() and amqp_constant_is_hard_error().Tony Garnock-Jones2010-01-091-0/+21
|
* Add amqp_bytes_t utilities.Tony Garnock-Jones2010-01-092-0/+13
|
* Add configure option to enable 64-bit mode (-m64)Tony Garnock-Jones2009-11-251-0/+6
|
* Add expected output for test_tablesTony Garnock-Jones2009-11-171-0/+90
|
* Implement Qpid/RabbitMQ/0-9-1 field table types.Tony Garnock-Jones2009-11-174-95/+615
|
* Add THANKS fileTony Garnock-Jones2009-10-191-0/+4
|
* Use C-style comments; avoid AMQP_EXPAND_METHOD; use amqp_data_in_buffer.Tony Garnock-Jones2009-10-143-13/+27
|
* Updated amqp_simple_rpc to take a 0 terminated array of amqp_method_number_t ↵Scott Brooks2009-10-143-7/+81
| | | | | | | | | | | replies Updated AMQP_SIMPLE_RPC macro for the new format Added AMQP_MULTIPLE_RESPONSE_RPC macro to take a 0 terminated array of amqp_method_number_t replies Added amqp_basic_get function Added amqp_queue_purge function Added amqp_get_rpc_reply function to expose amqp_rpc_reply when we are not statically linking Added amqp_data_in_buffer function to check to see if amqp_simple_wait_frames will hit a blocking read
* Add amqp_listenq, like amqp_listen but for queues rather than exchangesTony Garnock-Jones2009-08-273-1/+131
|
* Support basic.ack.Tony Garnock-Jones2009-08-272-0/+19
|