A small memory footprint AMQP implimentation

Dependents:   iothub_client_sample_amqp remote_monitoring simplesample_amqp

Revision:
14:0b0e28c75ded
Parent:
11:b9de84324501
Child:
15:5db103709f20
diff -r 9abd748f4e78 -r 0b0e28c75ded connection.c
--- a/connection.c	Wed Nov 16 21:38:05 2016 -0800
+++ b/connection.c	Wed Dec 14 16:00:07 2016 -0800
@@ -71,8 +71,8 @@
     uint16_t channel_max;
     milliseconds idle_timeout;
     milliseconds remote_idle_timeout;
-    uint64_t last_frame_received_time;
-    uint64_t last_frame_sent_time;
+    tickcounter_ms_t last_frame_received_time;
+    tickcounter_ms_t last_frame_sent_time;
 
     unsigned int is_underlying_io_open : 1;
     unsigned int idle_timeout_specified : 1;
@@ -1357,7 +1357,7 @@
 
     if (connection != NULL)
     {
-        uint64_t current_ms;
+        tickcounter_ms_t current_ms;
 
         if (tickcounter_get_current_ms(connection->tick_counter, &current_ms) != 0)
         {