Microsoft Azure IoTHub client AMQP transport
Dependents: sht15_remote_monitoring RobotArmDemo iothub_client_sample_amqp iothub_client_sample_amqp ... more
This library implements the AMQP transport for Microsoft Azure IoTHub client. The code is replicated from https://github.com/Azure/azure-iot-sdks
Diff: iothubtransportamqp_methods.h
- Revision:
- 29:7e8852b14e3b
- Parent:
- 25:63f7d371c030
- Child:
- 42:c2eaa912a28c
--- a/iothubtransportamqp_methods.h Sat Jan 28 09:33:50 2017 -0800 +++ b/iothubtransportamqp_methods.h Fri Feb 24 14:00:00 2017 -0800 @@ -23,12 +23,14 @@ typedef struct IOTHUBTRANSPORT_AMQP_METHODS_TAG* IOTHUBTRANSPORT_AMQP_METHODS_HANDLE; typedef void(*ON_METHODS_ERROR)(void* context); typedef int(*ON_METHOD_REQUEST_RECEIVED)(void* context, const char* method_name, const unsigned char* request, size_t request_size, IOTHUBTRANSPORT_AMQP_METHOD_HANDLE response); + typedef void(*ON_METHODS_UNSUBSCRIBED)(void* context); MOCKABLE_FUNCTION(, IOTHUBTRANSPORT_AMQP_METHODS_HANDLE, iothubtransportamqp_methods_create, const char*, hostname, const char*, device_id); MOCKABLE_FUNCTION(, void, iothubtransportamqp_methods_destroy, IOTHUBTRANSPORT_AMQP_METHODS_HANDLE, iothubtransport_amqp_methods_handle); MOCKABLE_FUNCTION(, int, iothubtransportamqp_methods_subscribe, IOTHUBTRANSPORT_AMQP_METHODS_HANDLE, iothubtransport_amqp_methods_handle, SESSION_HANDLE, session_handle, ON_METHODS_ERROR, on_methods_error, void*, on_methods_error_context, - ON_METHOD_REQUEST_RECEIVED, on_method_request_received, void*, on_method_request_received_context); + ON_METHOD_REQUEST_RECEIVED, on_method_request_received, void*, on_method_request_received_context, + ON_METHODS_UNSUBSCRIBED, on_methods_unsubscribed, void*, on_methods_unsubscribed_context); MOCKABLE_FUNCTION(, int, iothubtransportamqp_methods_respond, IOTHUBTRANSPORT_AMQP_METHOD_HANDLE, method_handle, const unsigned char*, response, size_t, response_size, int, status_code); MOCKABLE_FUNCTION(, void, iothubtransportamqp_methods_unsubscribe, IOTHUBTRANSPORT_AMQP_METHODS_HANDLE, iothubtransport_amqp_methods_handle);