A small memory footprint AMQP implimentation

Dependents:   iothub_client_sample_amqp remote_monitoring simplesample_amqp

Revision:
15:5db103709f20
Parent:
12:b30dacf113f2
Child:
16:22a72cf8e416
--- a/frame_codec.c	Wed Dec 14 16:00:07 2016 -0800
+++ b/frame_codec.c	Sun Jan 08 11:12:13 2017 -0800
@@ -608,7 +608,7 @@
             }
 
             /* send padding bytes */
-            /* Codes_SRS_FRAME_CODEC_01_090: [If the type_specific_size – 2 does not divide by 4, frame_codec_encode_frame shall pad the type_specific bytes with zeroes so that type specific data is according to the AMQP ISO.] */
+            /* Codes_SRS_FRAME_CODEC_01_090: [If the type_specific_size – 2 does not divide by 4, frame_codec_encode_frame shall pad the type_specific bytes with zeroes so that type specific data is according to the AMQP ISO.] */
             unsigned char padding_bytes[] = { 0x00, 0x00, 0x00 };
 
             /* Codes_SRS_FRAME_CODEC_01_088: [Encoded bytes shall be passed to the on_bytes_encoded callback.] */