diff options
author | Alan Antonuk <alan.antonuk@gmail.com> | 2015-10-20 23:02:31 -0700 |
---|---|---|
committer | Alan Antonuk <alan.antonuk@gmail.com> | 2015-10-22 20:34:29 -0700 |
commit | 8987cb0a727cc10e51efdf8e453f67daa809d160 (patch) | |
tree | 8ab6a975cffbc5a149973b52878f572655ac01b1 /librabbitmq/amqp.h | |
parent | 9b4b93304939a474abf042a9dde2e2b3a822f8f6 (diff) | |
download | rabbitmq-c-8987cb0a727cc10e51efdf8e453f67daa809d160.tar.gz |
Lib: add amqp_ssl_socket_set_versions fn
Add amqp_ssl_socket_versions function which allows a user to specify the
acceptable range of TLS versions they want to connect to the broker with.
Diffstat (limited to 'librabbitmq/amqp.h')
-rw-r--r-- | librabbitmq/amqp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/librabbitmq/amqp.h b/librabbitmq/amqp.h index 5121097..ed5f35a 100644 --- a/librabbitmq/amqp.h +++ b/librabbitmq/amqp.h @@ -726,7 +726,9 @@ typedef enum amqp_status_enum_ AMQP_STATUS_BROKER_UNSUPPORTED_SASL_METHOD = -0x0013, /**< Broker does not support the requested SASL mechanism */ - _AMQP_STATUS_NEXT_VALUE = -0x0014, /**< Internal value */ + AMQP_STATUS_UNSUPPORTED = -0x0014, /**< Parameter is unsupported + in this version */ + _AMQP_STATUS_NEXT_VALUE = -0x0015, /**< Internal value */ AMQP_STATUS_TCP_ERROR = -0x0100, /**< A generic TCP error occurred */ |