Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: iothub_client_sample_http simplesample_http temp_sensor_anomaly
Revision 24:02406f4a78ae, committed 2016-10-20
- Comitter:
- AzureIoTClient
- Date:
- Thu Oct 20 17:07:11 2016 -0700
- Parent:
- 23:44d825a1cd09
- Child:
- 25:3a68a581d3f9
- Commit message:
- 1.0.10
Changed in this revision
| iothubtransporthttp.c | Show annotated file Show diff for this revision Revisions of this file |
--- a/iothubtransporthttp.c Thu Sep 22 18:15:56 2016 -0700
+++ b/iothubtransporthttp.c Thu Oct 20 17:07:11 2016 -0700
@@ -580,7 +580,7 @@
}
else
{
- /*Codes_SRS_TRANSPORTMULTITHTTP_17_042: [ If the list_add fails then IoTHubTransportHttp_Register shall fail and return NULL. ]*/
+ /*Codes_SRS_TRANSPORTMULTITHTTP_17_042: [ If the singlylinkedlist_add fails then IoTHubTransportHttp_Register shall fail and return NULL. ]*/
if (was_sasObject_ok) destroy_SASObject(result);
if (was_abandonHTTPrelativePathBegin_ok) destroy_abandonHTTPrelativePathBegin(result);
if (was_messageHTTPrelativePath_ok) destroy_messageHTTPrelativePath(result);
@@ -659,7 +659,7 @@
/*Codes_SRS_TRANSPORTMULTITHTTP_17_047: [ IoTHubTransportHttp_Unregister shall free all the resources used in the device structure. ]*/
destroy_perDeviceData(perDeviceItem);
- /*Codes_SRS_TRANSPORTMULTITHTTP_17_048: [ IoTHubTransportHttp_Unregister shall call list_remove to remove device from devices list. ]*/
+ /*Codes_SRS_TRANSPORTMULTITHTTP_17_048: [ IoTHubTransportHttp_Unregister shall call singlylinkedlist_remove to remove device from devices list. ]*/
VECTOR_erase(handleData->perDeviceList, listItem, 1);
free(deviceHandleData);
}
@@ -743,7 +743,7 @@
handleData->perDeviceList = NULL;
}
-/*Codes_SRS_TRANSPORTMULTITHTTP_17_009: [ IoTHubTransportHttp_Create shall call list_create to create a list of registered devices. ]*/
+/*Codes_SRS_TRANSPORTMULTITHTTP_17_009: [ IoTHubTransportHttp_Create shall call singlylinkedlist_create to create a list of registered devices. ]*/
static bool create_perDeviceList(HTTPTRANSPORT_HANDLE_DATA* handleData)
{
bool result;