corrected version (with typedef struct IOTHUB_CLIENT_LL_UPLOADTOBLOB_HANDLE_DATA* IOTHUB_CLIENT_LL_UPLOADTOBLOB_HANDLE;) included in the sources
Dependents: STM32F746_iothub_client_sample_mqtt
Fork of iothub_client by
Diff: iothubtransport.c
- Revision:
- 43:038d8511e817
- Parent:
- 38:a05929a75111
diff -r 448eecc3676e -r 038d8511e817 iothubtransport.c --- a/iothubtransport.c Tue Jun 07 10:49:08 2016 -0700 +++ b/iothubtransport.c Fri Jun 17 17:02:44 2016 -0700 @@ -109,6 +109,7 @@ /*Codes_SRS_IOTHUBTRANSPORT_17_001: [ IoTHubTransport_Create shall return a non-NULL handle on success.]*/ result->stopThread = 1; result->workerThreadHandle = NULL; /* create thread when work needs to be done */ + result->IoTHubTransport_GetHostname = transportProtocol->IoTHubTransport_GetHostname; result->IoTHubTransport_SetOption = transportProtocol->IoTHubTransport_SetOption; result->IoTHubTransport_Create = transportProtocol->IoTHubTransport_Create; result->IoTHubTransport_Destroy = transportProtocol->IoTHubTransport_Destroy;