summaryrefslogtreecommitdiff
path: root/examples/amqp_rpc_sendstring_client.c
Commit message (Collapse)AuthorAgeFilesLines
* Make connection the socket object ownerAlan Antonuk2013-07-031-2/+1
| | | | | | | | Improve the socket interface by making the amqp_connection_state_t object the amqp_socket_t owner, and tie its lifetime to the connection's lifetime. This prevents a class of silly errors where the socket object isn't freed, or the socket object is assigned to two different connection objects
* Start addressing review commentsMichael Steinert2013-04-091-1/+1
| | | | Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
* Update RPC example to use new socket APIMichael Steinert2013-04-091-5/+14
| | | | Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
* Updating license yearAlan Antonuk2013-04-081-0/+3
|
* Formatted source code with astyle utiltyAlan Antonuk2013-04-081-6/+12
|
* Adding vim modelines to help with source formattingAlan Antonuk2013-04-051-0/+1
|
* Removing exec bit from amqp_rpc_sendstring_client.cAlan Antonuk2012-10-241-0/+0
| | | | Somehow it had 0755 permissions, should be 0644
* New example: amqp_rpc_sendstring_client. The client sends a plain text ↵Jani Hur2012-10-051-0/+228
message to a queue and expects to receive a reply to a private reply_to queue.