summaryrefslogtreecommitdiff
path: root/examples/amqps_unbind.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
* Updating license header in new filesAlan Antonuk2013-04-171-0/+6
|
* Fix code formatting to match the rest of the libAlan Antonuk2013-04-171-7/+8
|
* Adding vim modelines to new filesAlan Antonuk2013-04-171-0/+1
|
* Start addressing review commentsMichael Steinert2013-04-091-1/+1
| | | | Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
* Set the client key/cert in one API callMichael Steinert2013-04-091-8/+1
| | | | | | | | It doesn't make much sense to have separate APIs to set the client key/cert pair. This change also make it easier to port to other backends. Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
* Add API to load SSL keys from a bufferMichael Steinert2013-04-091-2/+9
| | | | Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
* Propose new socket APIMichael Steinert2013-04-091-9/+28
| | | | | | | | | The general idea is to have a non-instantiable socket base class. Connection-specific sub-classes provide a constructor and methods for modifying connection parameters. `amqp_socket_close()` is the destructor. Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
* Add SSL/TLS examplesMichael Steinert2013-04-091-0/+88
Signed-off-by: Michael Steinert <mike.steinert@gmail.com>