Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [paho-dev] Varying Delay for MQTT Messages

Hi Ian,

sorry for the delay... I was out and travelling...

Find attached the Trace with LogLevel Maximum!

Chris


Date: Fri, 30 Jan 2015 17:23:00 -0500
From: fpagliughi@xxxxxxxxxxxxxx
To: paho-dev@xxxxxxxxxxx
Subject: Re: [paho-dev] Varying Delay for MQTT Messages

Hello Ian,

Sorry for the delay on this. Earlier this week a very large pile of snow developed between where I was and where my laptop was.

I made a slight modification to the MQTTAsync_publish sample app so that when a transfer is completed another message is sent immediately, but I was seeing about a second between each message.

The 'running' variable is now an int counting down the number of messages to send, five in this case. The normal output would be:
$  build/output/samples/MQTTAsync_publish
Waiting for publication of 'Hello World!'
on topic 'MQTT Examples' for client with ClientID: ExampleClientPub
Successful connection
Sent message with token value 1
Message with token value 1 delivery confirmed
Sent message with token value 2
Message with token value 2 delivery confirmed
Sent message with token value 3
Message with token value 3 delivery confirmed
Sent message with token value 4
Message with token value 4 delivery confirmed
Sent message with token value 5
Message with token value 5 delivery confirmed
Attached is the source and log. According to the log, it seems that the delay I noticed turned out to be exactly 1sec in a persistence "put" call despite MQTTCLIENT_PERSISTENCE_NONE being specified?  This is ~Line 411 in the log and repeats for each message sent.

20150130 170213.898 (3380758272)    (3)> MQTTProtocol_startPublishCommon:124
20150130 170213.898 (3380758272)     (4)> MQTTPacket_send_publish:677
20150130 170213.898 (3380758272)      (5)> MQTTPacket_sends:226
20150130 170213.898 (3380758272)       (6)> MQTTPacket_encode:268
20150130 170213.898 (3380758272)       (6)< MQTTPacket_encode:278 (1)
20150130 170213.898 (3380758272)       (6)> MQTTPersistence_put:347
20150130 170213.898 (3380758272)       (6)< MQTTPersistence_put:381 (0)    <------ Here -----
20150130 170214.898 (3380758272)       (6)> Socket_putdatas:443
20150130 170214.898 (3380758272)        (7)> Socket_writev:399
20150130 170214.898 (3380758272)        (7)< Socket_writev:420 (31)
20150130 170214.898 (3380758272)       (6)< Socket_putdatas:485 (0)
20150130 170214.898 (3380758272)      (5)< MQTTPacket_sends:253 (0)
20150130 170214.898 3 ExampleClientPub -> PUBLISH msgid: 1 qos: 1 retained: 0 (0) payload: Hello World!

This was run on a ThinkPad i7 laptop running Linux Mint13, x86_64.

Thanks,
Frank

On 01/28/2015 08:29 AM, Ian Craggs wrote:
Hi Chris,

I was hoping for a full trace.  This seems to be just a protocol level trace?

Ian


On 01/27/2015 03:07 PM, Chris Summer wrote:
Hi Ian,

0) I am using the MQTTAsyncAPI with callbacks. I am processing the incoming messages within the MessageArrived Callback Function. I did an implementation using the MQTTClient, then there is no such effect.

1) Is turned off

2) Find tracefile in the attachement


Thanks a lot!
Chris


Date: Mon, 26 Jan 2015 14:00:35 -0500
From: fpagliughi@xxxxxxxxxxxxxx
To: paho-dev@xxxxxxxxxxx
Subject: Re: [paho-dev] Varying Delay for MQTT Messages

Hi Ian,

I saw a strange delay of about 1-sec in the latest Asynhronous C library. I had modified the publisher example app to send several messages; sending the next as soon as one is acknowledged (QoS=1). I ran it all on the same machine over localhost, talking to mosquitto. The timing seemed odd, but I haven't had time to investigate further yet.

I will see I can recreate the test app and send it to you ASAP.

Frank

On 01/26/2015 08:12 AM, Ian Craggs wrote:
Hi Chris,

are you using the MQTTClient or MQTTAsync API?  If MQTTClient, are you setting callbacks?  I think it's most likely that the timing differences are an artifact of the threading model.  With MQTTClient, if you use the receive call rather than the messageArrived callback, no background threads are started.

1) make sure you have turned off message persistence when creating the client object (MQTTCLIENT_PERSISTENCE_NONE).  This shouldn't be used for QoS 0, but might have an effect.

2) You can take a trace by setting the environment variable MQTT_C_CLIENT_TRACE=(ON or filename), and then I can check to see what is happening. 

3) Other client options for C/C++ are the Paho embedded clients and libmosquitto in the Mosquitto project, which follows the same API model as the Python API because they are both written by Roger Light.  I'd like to see if we can understand and solve your problem first though -- so please take a trace.

Thanks

Ian

On 01/26/2015 10:23 AM, Chris Summer wrote:
Hi all,

I am experiencing some behavior I cannot explain.

Here is what I do.

I am using the paho-c library and as a reference the paho python library. My Broker is mosquitto.

The goal of my experiments is to measure the application layer roundtrip time. Therefore I have the following setup


Application <----> Broker <---> Reflector

What I do is:

*  I take the time in the application, put it into a packet and send it to the broker. (QoS 0)
* The reflector is subscribed to theses messages, receives them, packs them into a new packet and sends the back to the broker using a different topic.
* Finally I receive the message back at the application, take the current time and calculate the time difference between the current time and the time contained in the packet.

I have this implementation, both in C and in Python. All processes are running on the same machine.

No here are the observations that keep me busy.

If I watch the application delay for the c implementation I get something like
5, 1005, 106, 5, 1005, 104, 6 ...

For the python implementation it is like:
5, 5, 5, 6, 4, ....

You see the difference, unfortunately I need an implementation in C thanks to the target platform. I checked my code several times, there is nothing I could pinpoint to cause the delay.

To me, it resembles effects that I have seen in other projects when using TCP. Could it be, that somewhere in the library code  there is some issue with the socket handling?

Any other ideas? Did I miss a configuration flag or something?

Cheers,

Chris




_______________________________________________
paho-dev mailing list
paho-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/paho-dev

-- 
Ian Craggs                          
icraggs@xxxxxxxxxx                 IBM United Kingdom
Paho Project Lead; Committer on Mosquitto



_______________________________________________
paho-dev mailing list
paho-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/paho-dev


_______________________________________________ paho-dev mailing list paho-dev@xxxxxxxxxxx To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://dev.eclipse.org/mailman/listinfo/paho-dev


_______________________________________________
paho-dev mailing list
paho-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/paho-dev

-- 
Ian Craggs                          
icraggs@xxxxxxxxxx                 IBM United Kingdom
Paho Project Lead; Committer on Mosquitto



_______________________________________________
paho-dev mailing list
paho-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/paho-dev


_______________________________________________ paho-dev mailing list paho-dev@xxxxxxxxxxx To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://dev.eclipse.org/mailman/listinfo/paho-dev
QOS: 0
=========================================================
                   Trace Output
Product name: Paho Asynchronous MQTT C Client Library
Version: ##MQTTCLIENT_VERSION_TAG##
Build level: ##MQTTCLIENT_BUILD_TAG##
/proc/version: Linux version 3.13.0-24-generic (buildd@roseapple) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #46-Ubuntu SMP Thu Apr 10 19:08:14 UTC 2014

=========================================================
19700101 010000.000 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9793e90

19700101 010000.000 (3075852032)  (1)> Socket_outInitialize:120
19700101 010000.000 (3075852032)   (2)> SocketBuffer_initialize:85
19700101 010000.000 Allocating 32 bytes in heap at file src/SocketBuffer.c line 73 ptr 0x9793f68

19700101 010000.000 Allocating 1008 bytes in heap at file src/SocketBuffer.c line 75 ptr 0x9794390

19700101 010000.000 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794790

19700101 010000.000 (3075852032)   (2)< SocketBuffer_initialize:89
19700101 010000.000 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794810

19700101 010000.000 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794890

19700101 010000.000 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794910

19700101 010000.000 (3075852032)  (1)< Socket_outInitialize:133
19700101 010000.000 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794990

19700101 010000.000 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794a10

19700101 010000.000 Allocating 144 bytes in heap at file src/MQTTAsync.c line 393 ptr 0x9794a90

19700101 010000.000 Allocating 16 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0x9794b88

19700101 010000.000 (3075852032)  (1)> MQTTStrncpy:736
19700101 010000.000 (3075852032)  (1)< MQTTStrncpy:746
19700101 010000.000 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794bf8

19700101 010000.000 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0x9794c78

20150202 104514.068 Allocating 80 bytes in heap at file src/MQTTAsync.c line 409 ptr 0x9794ce8

20150202 104514.068 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794d98

20150202 104514.068 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794e18

20150202 104514.068 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0x9794e98

20150202 104514.068 Allocating 16 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0x9794f20

20150202 104514.068 (3075852032)  (1)> MQTTStrncpy:736
20150202 104514.068 (3075852032)  (1)< MQTTStrncpy:746
20150202 104514.068 (3075852032)  (1)> MQTTPersistence_create:48
20150202 104514.068 (3075852032)  (1)< MQTTPersistence_create:94 (0)
20150202 104514.068 (3075852032)  (1)> MQTTPersistence_initialize:109
20150202 104514.068 (3075852032)  (1)< MQTTPersistence_initialize:117 (0)
20150202 104514.068 (3075852032)  (1)> MQTTAsync_restoreCommands:695
20150202 104514.068 0 commands restored for client InFlight
20150202 104514.068 (3075852032)  (1)< MQTTAsync_restoreCommands:727 (0)
20150202 104514.068 (3075852032)  (1)> MQTTPersistence_restoreMessageQueue:609
20150202 104514.068 0 queued messages restored for client InFlight
20150202 104514.068 (3075852032)  (1)< MQTTPersistence_restoreMessageQueue:640 (0)
20150202 104514.068 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0x9794f90

20150202 104514.068 (3075852032) (0)< MQTTAsync_create:433 (0)
20150202 104514.068 (3075852032) (0)> MQTTAsync_setCallbacks:1742
20150202 104514.069 (3075852032) (0)< MQTTAsync_setCallbacks:1756 (0)
20150202 104514.069 (3075852032) (0)> MQTTAsync_connect:1920
20150202 104514.069 (3075852032)  (1)> Thread_start:65
20150202 104514.069 (3075852032)  (1)< Thread_start:75
20150202 104514.069 (3075852032)  (1)> Thread_start:65
20150202 104514.069 (3075852032)  (1)< Thread_start:75
20150202 104514.069 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2047 ptr 0x9795120

20150202 104514.069 (3075849024) (0)> MQTTAsync_sendThread:1257
20150202 104514.069 (3075849024)  (1)> Thread_wait_cond:402
20150202 104514.069 (3075852032)  (1)> MQTTAsync_addCommand:737
20150202 104514.069 Allocating 16 bytes in heap at file src/LinkedList.c line 108 ptr 0x97951c0

20150202 104514.069 (3067456320) (0)> MQTTAsync_receiveThread:1459
20150202 104514.069 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.069 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.069 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.069 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.069 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104514.069 (3075849024)  (1)> Thread_wait_cond:402
20150202 104514.069 (3075852032)  (1)< MQTTAsync_addCommand:768 (0)
20150202 104514.069 (3075852032) (0)< MQTTAsync_connect:2072 (0)
20150202 104514.170 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104514.170 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104514.170 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104514.170 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104514.170 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104514.170 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104514.170 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104514.170 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104514.170 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.170 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.170 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.170 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.170 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104514.170 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104514.170 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104514.170 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104514.170 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104514.170 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104514.170 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.170 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.271 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.271 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.271 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104514.271 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104514.271 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104514.271 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104514.271 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104514.271 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104514.271 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.271 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.271 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.271 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.271 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104514.271 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104514.271 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104514.271 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104514.271 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104514.271 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104514.271 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.271 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.472 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.472 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.472 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104514.472 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104514.472 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104514.472 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104514.472 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104514.472 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104514.472 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.472 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.472 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.472 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.472 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104514.472 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104514.472 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104514.472 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104514.472 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104514.472 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104514.472 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.472 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.675 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.675 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.675 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104514.675 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104514.675 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104514.675 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104514.675 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104514.675 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104514.675 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.675 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.675 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.675 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.675 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104514.675 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104514.675 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104514.675 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104514.675 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104514.675 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104514.675 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.675 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.877 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.877 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.877 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104514.877 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104514.877 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104514.877 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104514.877 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104514.877 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104514.877 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104514.877 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104514.877 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104514.877 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104514.877 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104514.877 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104514.877 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104514.877 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104514.877 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb64004b0

20150202 104514.877 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1792 bytes

20150202 104514.877 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1760 bytes

20150202 104514.877 Connecting to serverURI 10.0.1.44:1883 with MQTT version 4
20150202 104515.073 (3075849024)   (2)> MQTTProtocol_connect:93
20150202 104515.073 (3075849024)    (3)> MQTTProtocol_addressPort:50
20150202 104515.073 Allocating 16 bytes in heap at file src/MQTTProtocolOut.c line 60 ptr 0xb6400500

20150202 104515.073 (3075849024)     (4)> MQTTStrncpy:736
20150202 104515.073 the src string is truncated
20150202 104515.073 (3075849024)     (4)< MQTTStrncpy:746
20150202 104515.073 (3075849024)    (3)< MQTTProtocol_addressPort:71
20150202 104515.073 (3075849024)    (3)> Socket_new:601
20150202 104515.073 New socket 3 for 10.0.1.44, port 1883
20150202 104515.073 (3075849024)     (4)> Socket_addSocket:162
20150202 104515.073 Allocating 16 bytes in heap at file src/Socket.c line 165 ptr 0xb6400590

20150202 104515.073 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6400600

20150202 104515.073 (3075849024)      (5)> Socket_setnonblocking:72
20150202 104515.073 (3075849024)      (5)< Socket_setnonblocking:77 (0)
20150202 104515.073 (3075849024)     (4)< Socket_addSocket:175 (0)
20150202 104515.073 (3075849024)     (4)> Socket_error:94
20150202 104515.073 (3075849024)     (4)< Socket_error:103 (115)
20150202 104515.073 Allocating 16 bytes in heap at file src/Socket.c line 680 ptr 0xb6400670

20150202 104515.073 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb64006e0

20150202 104515.073 Connect pending
20150202 104515.073 (3075849024)    (3)< Socket_new:688 (115)
20150202 104515.073 Freeing 16 bytes in heap at file src/MQTTProtocolOut.c line 126, heap use now 1824 bytes

20150202 104515.073 (3075849024)   (2)< MQTTProtocol_connect:128 (115)
20150202 104515.073 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1808 bytes

20150202 104515.073 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104515.073 (3075849024)  (1)> Thread_wait_cond:402
20150202 104515.073 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104515.073 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104515.073 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104515.073 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104515.073 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104515.073 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104515.073 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104515.073 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104515.073 Return code 1 from read select
20150202 104515.073 (3067456320)    (3)> Socket_continueWrites:777
20150202 104515.073 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104515.073 Return code 1 from write select
20150202 104515.073 (3067456320)    (3)> isReady:192
20150202 104515.073 Freeing 16 bytes in heap at file src/LinkedList.c line 219, heap use now 1744 bytes

20150202 104515.078 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1728 bytes

20150202 104515.078 (3067456320)    (3)< isReady:197 (1)
20150202 104515.078 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104515.078 (3067456320)   (2)> MQTTAsync_connecting:2448
20150202 104515.078 (3067456320)    (3)> MQTTPacket_send_connect:50
20150202 104515.078 Allocating 32 bytes in heap at file src/MQTTPacketOut.c line 62 ptr 0xb62004b0

20150202 104515.078 (3067456320)     (4)> MQTTPacket_send:180
20150202 104515.078 Allocating 16 bytes in heap at file src/MQTTPacket.c line 181 ptr 0xb6200530

20150202 104515.078 (3067456320)      (5)> MQTTPacket_encode:268
20150202 104515.078 (3067456320)      (5)< MQTTPacket_encode:278 (1)
20150202 104515.078 (3067456320)      (5)> Socket_putdatas:443
20150202 104515.078 (3067456320)       (6)> Socket_writev:399
20150202 104515.078 (3067456320)       (6)< Socket_writev:420 (22)
20150202 104515.078 (3067456320)      (5)< Socket_putdatas:485 (0)
20150202 104515.078 Freeing 16 bytes in heap at file src/MQTTPacket.c line 205, heap use now 1760 bytes

20150202 104515.078 (3067456320)     (4)< MQTTPacket_send:207 (0)
20150202 104515.078 3 InFlight -> CONNECT cleansession: 1 (0)
20150202 104515.078 Freeing 32 bytes in heap at file src/MQTTPacketOut.c line 107, heap use now 1744 bytes

20150202 104515.078 (3067456320)    (3)< MQTTPacket_send_connect:108 (0)
20150202 104515.078 (3067456320)   (2)< MQTTAsync_connecting:2551 (0)
20150202 104515.079 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104515.079 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104515.079 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104515.079 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104515.079 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104515.079 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104515.079 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104515.079 Return code 1 from read select
20150202 104515.079 (3067456320)    (3)> Socket_continueWrites:777
20150202 104515.079 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104515.079 Return code 1 from write select
20150202 104515.079 (3067456320)    (3)> isReady:192
20150202 104515.079 (3067456320)    (3)< isReady:197 (1)
20150202 104515.079 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104515.079 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104515.079 (3067456320)    (3)> Socket_getch:297
20150202 104515.079 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104515.079 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104515.079 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104515.079 queueChar: index is now 1, headerlen 1
20150202 104515.080 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104515.080 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104515.080 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104515.080 (3067456320)     (4)> Socket_getch:297
20150202 104515.080 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104515.080 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104515.080 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104515.080 queueChar: index is now 2, headerlen 2
20150202 104515.080 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104515.080 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104515.080 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104515.080 (3067456320)    (3)> Socket_getdata:336
20150202 104515.080 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104515.080 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104515.080 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104515.080 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104515.080 (3067456320)    (3)< Socket_getdata:370
20150202 104515.080 Allocating 16 bytes in heap at file src/MQTTPacketOut.c line 122 ptr 0xb6200530

20150202 104515.080 (3067456320)    (3)> MQTTPacket_connack:125
20150202 104515.080 (3067456320)    (3)< MQTTPacket_connack:129
20150202 104515.080 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104515.080 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104515.080 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104515.080 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104515.080 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104515.080 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104515.080 (3067456320)  (1)> MQTTAsync_completeConnection:1421
20150202 104515.080 3 InFlight <- CONNACK rc: 0
20150202 104515.080 (3067456320)   (2)> MQTTAsync_cleanSession:1815
20150202 104515.080 (3067456320)    (3)> MQTTPersistence_clear:156
20150202 104515.080 (3067456320)    (3)< MQTTPersistence_clear:160 (0)
20150202 104515.080 (3067456320)    (3)> MQTTProtocol_emptyMessageList:699
20150202 104515.080 (3067456320)    (3)< MQTTProtocol_emptyMessageList:706
20150202 104515.080 (3067456320)    (3)> MQTTProtocol_emptyMessageList:699
20150202 104515.080 (3067456320)    (3)< MQTTProtocol_emptyMessageList:706
20150202 104515.080 (3067456320)    (3)> MQTTAsync_emptyMessageQueue:1296
20150202 104515.080 (3067456320)    (3)< MQTTAsync_emptyMessageQueue:1310
20150202 104515.080 (3067456320)    (3)> MQTTAsync_removeResponsesAndCommands:1320
20150202 104515.080 0 responses removed for client InFlight
20150202 104515.080 0 commands removed for client InFlight
20150202 104515.081 (3067456320)    (3)< MQTTAsync_removeResponsesAndCommands:1352
20150202 104515.081 (3067456320)   (2)< MQTTAsync_cleanSession:1831 (0)
20150202 104515.081 Freeing 16 bytes in heap at file src/MQTTAsync.c line 1447, heap use now 736 bytes

20150202 104515.081 (3067456320)  (1)< MQTTAsync_completeConnection:1450 (0)
20150202 104515.081 Calling connect success for client InFlight
Successful connection
Subscribing to topic configuration
for client InFlight using QoS0

Press Q<Enter> to quit

20150202 104515.081 (3067456320)  (1)> MQTTAsync_subscribeMany:2210
20150202 104515.081 (3067456320)   (2)> UTF8_validateString:155
20150202 104515.081 (3067456320)    (3)> UTF8_validate:129
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)    (3)< UTF8_validate:141 (1)
20150202 104515.081 (3067456320)   (2)< UTF8_validateString:157 (1)
20150202 104515.081 (3067456320)   (2)> UTF8_validateString:155
20150202 104515.081 (3067456320)    (3)> UTF8_validate:129
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)    (3)< UTF8_validate:141 (1)
20150202 104515.081 (3067456320)   (2)< UTF8_validateString:157 (1)
20150202 104515.081 (3067456320)   (2)> UTF8_validateString:155
20150202 104515.081 (3067456320)    (3)> UTF8_validate:129
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.081 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.081 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)     (4)> UTF8_char_validate:79
20150202 104515.082 (3067456320)     (4)< UTF8_char_validate:113
20150202 104515.082 (3067456320)    (3)< UTF8_validate:141 (1)
20150202 104515.082 (3067456320)   (2)< UTF8_validateString:157 (1)
20150202 104515.082 (3067456320)   (2)> MQTTAsync_assignMsgId:2173
20150202 104515.082 (3067456320)   (2)< MQTTAsync_assignMsgId:2197 (1)
20150202 104515.082 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2241 ptr 0xb6200570

20150202 104515.082 Allocating 16 bytes in heap at file src/MQTTAsync.c line 2254 ptr 0xb6200550

20150202 104515.082 Allocating 16 bytes in heap at file src/MQTTAsync.c line 2255 ptr 0xb6200610

20150202 104515.082 Allocating 16 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200688

20150202 104515.082 (3067456320)   (2)> MQTTStrncpy:736
20150202 104515.082 (3067456320)   (2)< MQTTStrncpy:746
20150202 104515.082 Allocating 16 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200700

20150202 104515.082 (3067456320)   (2)> MQTTStrncpy:736
20150202 104515.082 (3067456320)   (2)< MQTTStrncpy:746
20150202 104515.082 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62004b0

20150202 104515.082 (3067456320)   (2)> MQTTStrncpy:736
20150202 104515.082 (3067456320)   (2)< MQTTStrncpy:746
20150202 104515.082 (3067456320)   (2)> MQTTAsync_addCommand:737
20150202 104515.082 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62007c8

20150202 104515.082 (3067456320)   (2)< MQTTAsync_addCommand:768 (0)
20150202 104515.082 (3067456320)  (1)< MQTTAsync_subscribeMany:2264 (0)
Result Code for subscription: 020150202 104515.082 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104515.082 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104515.082 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104515.082 (3075849024)  (1)> Thread_wait_cond:402
20150202 104515.082 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104515.082 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104515.082 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104515.082 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104515.082 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb64004b0

20150202 104515.082 Return code 0 from read select
20150202 104515.082 (3067456320)    (3)> Socket_continueWrites:777
20150202 104515.082 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104515.082 Return code 1 from write select
20150202 104515.082 (3067456320)    (3)> isReady:192
20150202 104516.084 (3067456320)    (3)< isReady:197 (0)
20150202 104516.084 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104516.084 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104516.084 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 928 bytes

20150202 104516.084 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 896 bytes

20150202 104516.084 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb64004b0

20150202 104516.084 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104516.084 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6400670

20150202 104516.084 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb64005b0

20150202 104516.084 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6400520

20150202 104516.084 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb64007f8

20150202 104516.084 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6400868

20150202 104516.084 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb64008d8

20150202 104516.084 (3075849024)   (2)> MQTTProtocol_subscribe:164
20150202 104516.084 (3075849024)    (3)> MQTTPacket_send_subscribe:174
20150202 104516.084 Allocating 48 bytes in heap at file src/MQTTPacketOut.c line 183 ptr 0xb6400948

20150202 104516.084 (3075849024)     (4)> MQTTPacket_send:180
20150202 104516.084 Allocating 16 bytes in heap at file src/MQTTPacket.c line 181 ptr 0xb64009d8

20150202 104516.084 (3075849024)      (5)> MQTTPacket_encode:268
20150202 104516.084 (3075849024)      (5)< MQTTPacket_encode:278 (1)
20150202 104516.084 (3075849024)      (5)> Socket_putdatas:443
20150202 104516.084 (3075849024)       (6)> Socket_writev:399
20150202 104516.084 (3075849024)       (6)< Socket_writev:420 (48)
20150202 104516.084 (3075849024)      (5)< Socket_putdatas:485 (0)
20150202 104516.084 Freeing 16 bytes in heap at file src/MQTTPacket.c line 205, heap use now 1104 bytes

20150202 104516.084 (3075849024)     (4)< MQTTPacket_send:207 (0)
20150202 104516.084 3 InFlight -> SUBSCRIBE msgid: 1 (0)
20150202 104516.084 Freeing 48 bytes in heap at file src/MQTTPacketOut.c line 196, heap use now 1088 bytes

20150202 104516.084 (3075849024)    (3)< MQTTPacket_send_subscribe:197 (0)
20150202 104516.084 (3075849024)   (2)< MQTTProtocol_subscribe:167 (0)
20150202 104516.084 Freeing 16 bytes in heap at file src/LinkedList.c line 387, heap use now 1040 bytes

20150202 104516.084 Freeing 16 bytes in heap at file src/LinkedList.c line 387, heap use now 1024 bytes

20150202 104516.084 Freeing 16 bytes in heap at file src/LinkedList.c line 387, heap use now 1008 bytes

20150202 104516.084 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104516.084 Freeing 16 bytes in heap at file src/LinkedList.c line 387, heap use now 960 bytes

20150202 104516.084 Freeing 16 bytes in heap at file src/LinkedList.c line 387, heap use now 944 bytes

20150202 104516.084 Freeing 16 bytes in heap at file src/LinkedList.c line 387, heap use now 928 bytes

20150202 104516.084 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 912 bytes

20150202 104516.084 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6400700

20150202 104516.084 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104516.085 (3075849024)  (1)> Thread_wait_cond:402
20150202 104516.085 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104516.085 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104516.085 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104516.085 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104516.085 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104516.085 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104516.085 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104516.085 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104516.085 Return code 1 from read select
20150202 104516.085 (3067456320)    (3)> Socket_continueWrites:777
20150202 104516.085 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104516.085 Return code 1 from write select
20150202 104516.085 (3067456320)    (3)> isReady:192
20150202 104516.085 (3067456320)    (3)< isReady:197 (1)
20150202 104516.085 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104516.085 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104516.085 (3067456320)    (3)> Socket_getch:297
20150202 104516.085 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104516.085 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104516.185 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104516.185 queueChar: index is now 1, headerlen 1
20150202 104516.185 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104516.185 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104516.185 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104516.185 (3067456320)     (4)> Socket_getch:297
20150202 104516.185 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104516.185 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104516.185 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104516.185 queueChar: index is now 2, headerlen 2
20150202 104516.185 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104516.185 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104516.185 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104516.185 (3067456320)    (3)> Socket_getdata:336
20150202 104516.185 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104516.185 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104516.185 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104516.185 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104516.185 (3067456320)    (3)< Socket_getdata:370
20150202 104516.185 Allocating 16 bytes in heap at file src/MQTTPacketOut.c line 211 ptr 0xb62007c8

20150202 104516.185 (3067456320)    (3)> MQTTPacket_suback:214
20150202 104516.185 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6200838

20150202 104516.185 Allocating 16 bytes in heap at file src/MQTTPacketOut.c line 221 ptr 0xb62008b8

20150202 104516.185 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200928

20150202 104516.185 Allocating 16 bytes in heap at file src/MQTTPacketOut.c line 221 ptr 0xb6200998

20150202 104516.185 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200a08

20150202 104516.185 Allocating 16 bytes in heap at file src/MQTTPacketOut.c line 221 ptr 0xb6200a78

20150202 104516.185 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200ae8

20150202 104516.185 (3067456320)    (3)< MQTTPacket_suback:225
20150202 104516.185 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104516.185 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104516.185 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104516.185 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104516.185 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104516.185 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104516.185 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1040 bytes

20150202 104516.185 Allocating 16 bytes in heap at file src/MQTTAsync.c line 1632 ptr 0xb6200b58

20150202 104516.185 Calling subscribe success for client InFlight
Subscribe succeeded
20150202 104516.185 Freeing 16 bytes in heap at file src/MQTTAsync.c line 1640, heap use now 1040 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/MQTTAsync.c line 847, heap use now 1024 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/MQTTAsync.c line 847, heap use now 1008 bytes

20150202 104516.185 Freeing 32 bytes in heap at file src/MQTTAsync.c line 847, heap use now 992 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/MQTTAsync.c line 849, heap use now 960 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/MQTTAsync.c line 850, heap use now 944 bytes

20150202 104516.185 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 928 bytes

20150202 104516.185 (3067456320)  (1)> MQTTProtocol_handleSubacks:184
20150202 104516.185 3 InFlight <- SUBACK msgid: 1
20150202 104516.185 (3067456320)   (2)> MQTTPacket_freeSuback:575
20150202 104516.185 Freeing 16 bytes in heap at file src/LinkedList.c line 358, heap use now 864 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/LinkedList.c line 360, heap use now 848 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/LinkedList.c line 358, heap use now 832 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/LinkedList.c line 360, heap use now 816 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/LinkedList.c line 358, heap use now 800 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/LinkedList.c line 360, heap use now 784 bytes

20150202 104516.185 Freeing 32 bytes in heap at file src/LinkedList.c line 373, heap use now 768 bytes

20150202 104516.185 Freeing 16 bytes in heap at file src/MQTTPacket.c line 578, heap use now 736 bytes

20150202 104516.185 (3067456320)   (2)< MQTTPacket_freeSuback:579
20150202 104516.185 (3067456320)  (1)< MQTTProtocol_handleSubacks:188 (0)
20150202 104516.185 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104516.185 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104517.087 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104517.087 (3075849024)  (1)> Thread_wait_cond:402
20150202 104517.087 Return code 0 from read select
20150202 104517.087 (3067456320)    (3)> Socket_continueWrites:777
20150202 104517.087 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104517.087 Return code 1 from write select
20150202 104517.087 (3067456320)    (3)> isReady:192
20150202 104517.087 (3067456320)    (3)< isReady:197 (0)
20150202 104517.087 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104517.087 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104517.087 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104517.087 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104517.087 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104517.087 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104517.087 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104517.087 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104517.087 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104517.087 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104517.087 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104517.087 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104518.088 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104518.088 (3075849024)  (1)> Thread_wait_cond:402
20150202 104518.088 Return code 0 from read select
20150202 104518.088 (3067456320)    (3)> Socket_continueWrites:777
20150202 104518.088 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104518.088 Return code 1 from write select
20150202 104518.088 (3067456320)    (3)> isReady:192
20150202 104518.088 (3067456320)    (3)< isReady:197 (0)
20150202 104518.088 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104518.088 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104518.088 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104518.088 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104518.088 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104518.088 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104518.088 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104518.088 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104518.088 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104518.088 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104518.088 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104518.088 (3075849024)  (1)> Thread_wait_cond:402
20150202 104519.399 Return code 0 from read select
20150202 104519.399 (3067456320)    (3)> Socket_continueWrites:777
20150202 104519.399 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104519.399 Return code 1 from write select
20150202 104519.399 (3067456320)    (3)> isReady:192
20150202 104519.399 (3067456320)    (3)< isReady:197 (0)
20150202 104519.399 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104519.399 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104519.399 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104519.399 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104519.399 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104519.399 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104519.399 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104519.399 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104519.399 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104519.399 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104519.399 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104519.399 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104519.399 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104519.399 (3075849024)  (1)> Thread_wait_cond:402
20150202 104520.505 Return code 0 from read select
20150202 104520.505 (3067456320)    (3)> Socket_continueWrites:777
20150202 104520.505 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104520.505 Return code 1 from write select
20150202 104520.505 (3067456320)    (3)> isReady:192
20150202 104520.505 (3067456320)    (3)< isReady:197 (0)
20150202 104520.505 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104520.505 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104520.505 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104520.505 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104520.505 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104520.505 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104520.505 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104520.505 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104520.505 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104520.505 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104520.505 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104520.505 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104520.505 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104520.505 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104521.097 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104521.097 (3075849024)  (1)> Thread_wait_cond:402
Activated Reflector Mode
20150202 104521.097 Return code 0 from read select
20150202 104521.097 (3067456320)    (3)> Socket_continueWrites:777
20150202 104521.097 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104521.097 Return code 1 from write select
20150202 104521.097 (3067456320)    (3)> isReady:192
20150202 104521.097 (3067456320)    (3)< isReady:197 (0)
20150202 104521.097 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104521.097 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104521.097 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104521.097 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104521.097 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104521.097 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104521.097 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104521.097 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104521.097 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104521.097 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104521.097 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104521.097 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104522.098 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104522.098 (3075849024)  (1)> Thread_wait_cond:402
20150202 104522.098 Return code 0 from read select
20150202 104522.098 (3067456320)    (3)> Socket_continueWrites:777
20150202 104522.098 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104522.098 Return code 1 from write select
20150202 104522.098 (3067456320)    (3)> isReady:192
20150202 104522.098 (3067456320)    (3)< isReady:197 (0)
20150202 104522.098 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104522.098 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104522.098 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104522.098 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104522.098 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104522.098 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104522.098 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104522.098 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104522.098 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104522.098 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104522.098 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104522.098 (3075849024)  (1)> Thread_wait_cond:402
20150202 104523.809 Return code 0 from read select
20150202 104523.809 (3067456320)    (3)> Socket_continueWrites:777
20150202 104523.809 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104523.809 Return code 1 from write select
20150202 104523.809 (3067456320)    (3)> isReady:192
20150202 104523.809 (3067456320)    (3)< isReady:197 (0)
20150202 104523.809 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104523.809 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104523.809 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104523.809 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104523.809 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104523.809 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104523.809 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104523.809 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104523.809 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104523.809 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104523.809 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104523.809 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104523.809 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104523.809 (3075849024)  (1)> Thread_wait_cond:402
20150202 104524.914 Return code 0 from read select
20150202 104524.914 (3067456320)    (3)> Socket_continueWrites:777
20150202 104524.914 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104524.914 Return code 1 from write select
20150202 104524.914 (3067456320)    (3)> isReady:192
20150202 104524.914 (3067456320)    (3)< isReady:197 (0)
20150202 104524.914 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104524.914 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104524.914 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104524.914 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104524.914 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104524.914 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104524.914 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104524.914 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104524.914 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104524.914 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104524.914 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104524.914 (3075849024)  (1)> Thread_wait_cond:402
20150202 104524.914 Return code 1 from read select
20150202 104524.914 (3067456320)    (3)> Socket_continueWrites:777
20150202 104525.368 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104525.368 Return code 1 from write select
20150202 104525.368 (3067456320)    (3)> isReady:192
20150202 104525.368 (3067456320)    (3)< isReady:197 (1)
20150202 104525.368 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104525.368 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104525.368 (3067456320)    (3)> Socket_getch:297
20150202 104525.368 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104525.368 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104525.368 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104525.368 queueChar: index is now 1, headerlen 1
20150202 104525.368 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104525.368 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104525.368 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104525.368 (3067456320)     (4)> Socket_getch:297
20150202 104525.368 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104525.368 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104525.368 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104525.368 queueChar: index is now 2, headerlen 2
20150202 104525.368 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104525.369 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104525.369 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104525.369 (3067456320)    (3)> Socket_getdata:336
20150202 104525.369 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104525.369 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104525.369 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104525.369 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104525.369 (3067456320)    (3)< Socket_getdata:370
20150202 104525.369 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200838

20150202 104525.369 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104525.369 (3067456320)     (4)> readUTFlen:352
20150202 104525.369 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62004b0

20150202 104525.369 (3067456320)     (4)< readUTFlen:364
20150202 104525.369 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104525.369 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104525.369 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104525.369 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-1;1422
20150202 104525.369 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104525.369 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200570

20150202 104525.369 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200b98

20150202 104525.369 Calling messageArrived for client InFlight, queue depth 0
20150202 104525.369 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104525.369 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104525.369 (3067456320)       (6)> UTF8_validateString:155
20150202 104525.369 (3067456320)        (7)> UTF8_validate:129
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.369 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.369 (3067456320)         (8)> UTF8_char_validate:79
20150202 104525.370 (3067456320)         (8)< UTF8_char_validate:113
20150202 104525.370 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104525.370 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104525.370 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200be8

20150202 104525.370 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200c38

20150202 104525.370 (3067456320)       (6)> MQTTStrncpy:736
20150202 104525.370 (3067456320)       (6)< MQTTStrncpy:746
20150202 104525.370 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200c68

20150202 104525.370 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104525.370 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200998

20150202 104525.370 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104525.370 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104525.370 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104525.370 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104525.370 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104525.370 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104525.370 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104525.370 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104525.370 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104525.370 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104525.370 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104525.370 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104525.370 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104525.370 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104525.370 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104525.370 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104525.370 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104525.370 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104525.370 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104525.370 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104525.370 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104525.370 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104525.370 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104525.370 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104525.370 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104525.370 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104525.370 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104525.370 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104525.370 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104525.370 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104525.371 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104525.371 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104525.371 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104525.371 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104525.371 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104525.371 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104525.371 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104525.371 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104525.371 (3075849024)       (6)> Socket_putdatas:443
20150202 104525.371 (3075849024)        (7)> Socket_writev:399
20150202 104525.371 (3075849024)        (7)< Socket_writev:420 (78)
20150202 104525.371 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104525.371 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104525.371 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104525.371 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104525.371 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104525.371 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104525.371 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104525.371 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104525.371 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104525.372 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104525.372 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104525.372 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104525.372 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104525.372 (3075849024)  (1)> Thread_wait_cond:402
20150202 104525.372 Return code 1 from read select
20150202 104525.372 (3067456320)    (3)> Socket_continueWrites:777
20150202 104525.372 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104525.372 Return code 1 from write select
20150202 104525.372 (3067456320)    (3)> isReady:192
20150202 104525.372 (3067456320)    (3)< isReady:197 (1)
20150202 104525.372 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104525.372 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104525.372 (3067456320)    (3)> Socket_getch:297
20150202 104525.372 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104525.372 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104525.372 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104525.372 queueChar: index is now 1, headerlen 1
20150202 104525.372 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104525.372 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104526.173 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104526.173 (3067456320)     (4)> Socket_getch:297
20150202 104526.173 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104526.173 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104526.173 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104526.173 queueChar: index is now 2, headerlen 2
20150202 104526.173 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104526.173 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104526.173 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104526.173 (3067456320)    (3)> Socket_getdata:336
20150202 104526.173 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104526.173 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104526.173 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104526.173 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104526.173 (3067456320)    (3)< Socket_getdata:370
20150202 104526.173 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62004b0

20150202 104526.173 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104526.173 (3067456320)     (4)> readUTFlen:352
20150202 104526.173 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200550

20150202 104526.173 (3067456320)     (4)< readUTFlen:364
20150202 104526.174 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104526.174 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104526.174 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104526.174 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-2;1422
20150202 104526.174 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104526.174 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005d0

20150202 104526.174 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200650

20150202 104526.174 Calling messageArrived for client InFlight, queue depth 0
20150202 104526.174 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104526.174 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104526.174 (3067456320)       (6)> UTF8_validateString:155
20150202 104526.174 (3067456320)        (7)> UTF8_validate:129
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104526.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104526.174 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104526.174 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104526.174 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62006f0

20150202 104526.174 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200798

20150202 104526.174 (3067456320)       (6)> MQTTStrncpy:736
20150202 104526.174 (3067456320)       (6)< MQTTStrncpy:746
20150202 104526.174 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200818

20150202 104526.174 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104526.174 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62008b8

20150202 104526.174 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104526.174 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104526.174 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104526.175 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104526.175 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104526.175 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104526.175 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104526.175 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104526.175 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104526.175 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104526.175 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104526.175 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104526.175 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104526.175 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104526.175 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104526.175 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104526.175 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104526.175 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104526.175 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104526.175 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104526.175 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104526.175 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104526.175 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104526.175 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104526.175 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104526.175 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104526.175 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104526.175 (3075849024)  (1)> Thread_wait_cond:402
20150202 104526.175 Return code 1 from read select
20150202 104526.175 (3067456320)    (3)> Socket_continueWrites:777
20150202 104526.175 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104526.175 Return code 1 from write select
20150202 104526.175 (3067456320)    (3)> isReady:192
20150202 104526.175 (3067456320)    (3)< isReady:197 (1)
20150202 104526.175 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104526.175 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104526.175 (3067456320)    (3)> Socket_getch:297
20150202 104526.175 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104526.175 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104526.175 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104526.175 queueChar: index is now 1, headerlen 1
20150202 104526.175 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104526.175 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104527.173 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104527.173 (3067456320)     (4)> Socket_getch:297
20150202 104527.173 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104527.173 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104527.173 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104527.173 queueChar: index is now 2, headerlen 2
20150202 104527.173 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104527.173 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104527.173 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104527.173 (3067456320)    (3)> Socket_getdata:336
20150202 104527.173 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104527.173 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104527.173 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104527.173 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104527.173 (3067456320)    (3)< Socket_getdata:370
20150202 104527.173 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62004b0

20150202 104527.173 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104527.173 (3067456320)     (4)> readUTFlen:352
20150202 104527.173 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200550

20150202 104527.173 (3067456320)     (4)< readUTFlen:364
20150202 104527.173 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104527.173 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104527.173 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104527.173 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-3;1422
20150202 104527.173 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104527.173 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005d0

20150202 104527.173 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200650

20150202 104527.173 Calling messageArrived for client InFlight, queue depth 0
20150202 104527.173 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104527.173 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104527.173 (3067456320)       (6)> UTF8_validateString:155
20150202 104527.173 (3067456320)        (7)> UTF8_validate:129
20150202 104527.173 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.173 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.173 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.173 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.173 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.173 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.173 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.173 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)         (8)> UTF8_char_validate:79
20150202 104527.174 (3067456320)         (8)< UTF8_char_validate:113
20150202 104527.174 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104527.174 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104527.174 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200928

20150202 104527.174 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62009d0

20150202 104527.174 (3067456320)       (6)> MQTTStrncpy:736
20150202 104527.174 (3067456320)       (6)< MQTTStrncpy:746
20150202 104527.174 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a78

20150202 104527.174 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104527.174 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b18

20150202 104527.174 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104527.174 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104527.174 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104527.174 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104527.174 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104527.174 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104527.174 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104527.174 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104527.174 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104527.174 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104527.174 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104527.174 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104527.174 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104527.174 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104527.174 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104527.174 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104527.174 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104527.174 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104527.174 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104527.174 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104527.174 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104527.174 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104527.174 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104527.174 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104527.174 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104527.174 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104527.174 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104527.174 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104527.174 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104527.174 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104527.174 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104527.174 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104527.174 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104527.174 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104527.174 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104527.174 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104527.174 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104527.174 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104527.174 (3075849024)       (6)> Socket_putdatas:443
20150202 104527.174 (3075849024)        (7)> Socket_writev:399
20150202 104527.174 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104527.174 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104527.174 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104527.174 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104527.174 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104527.174 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104527.174 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104527.174 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104527.174 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104527.174 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104527.174 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104527.174 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104527.174 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104527.174 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104527.174 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104527.174 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104527.174 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104527.174 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104527.174 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104527.174 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104527.174 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104527.174 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104527.174 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104527.174 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104527.174 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104527.174 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104527.174 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104527.174 (3075849024)       (6)> Socket_putdatas:443
20150202 104527.174 (3075849024)        (7)> Socket_writev:399
20150202 104527.174 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104527.174 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104527.174 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104527.174 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104527.174 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104527.174 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104527.174 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104527.174 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104527.174 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104527.174 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104527.174 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104527.174 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104527.174 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104527.174 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104527.175 (3075849024)  (1)> Thread_wait_cond:402
20150202 104527.175 Return code 1 from read select
20150202 104527.175 (3067456320)    (3)> Socket_continueWrites:777
20150202 104527.175 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104527.175 Return code 1 from write select
20150202 104527.175 (3067456320)    (3)> isReady:192
20150202 104527.175 (3067456320)    (3)< isReady:197 (1)
20150202 104527.175 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104527.175 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104527.175 (3067456320)    (3)> Socket_getch:297
20150202 104527.175 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104527.175 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104527.175 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104527.175 queueChar: index is now 1, headerlen 1
20150202 104527.175 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104527.175 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104527.175 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104527.175 (3067456320)     (4)> Socket_getch:297
20150202 104527.175 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104527.175 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104528.175 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104528.175 queueChar: index is now 2, headerlen 2
20150202 104528.175 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104528.175 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104528.175 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104528.175 (3067456320)    (3)> Socket_getdata:336
20150202 104528.175 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104528.175 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104528.175 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104528.175 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104528.175 (3067456320)    (3)< Socket_getdata:370
20150202 104528.175 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62009d0

20150202 104528.175 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104528.175 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104528.175 (3075849024)  (1)> Thread_wait_cond:402
20150202 104528.175 (3067456320)     (4)> readUTFlen:352
20150202 104528.175 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200798

20150202 104528.175 (3067456320)     (4)< readUTFlen:364
20150202 104528.175 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104528.175 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104528.176 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104528.176 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-4;1422
20150202 104528.176 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104528.176 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62004b0

20150202 104528.176 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200650

20150202 104528.176 Calling messageArrived for client InFlight, queue depth 0
20150202 104528.176 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104528.176 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104528.176 (3067456320)       (6)> UTF8_validateString:155
20150202 104528.176 (3067456320)        (7)> UTF8_validate:129
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.177 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.177 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.177 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.177 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.177 (3067456320)         (8)> UTF8_char_validate:79
20150202 104528.177 (3067456320)         (8)< UTF8_char_validate:113
20150202 104528.177 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104528.177 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104528.177 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200818

20150202 104528.177 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200550

20150202 104528.177 (3067456320)       (6)> MQTTStrncpy:736
20150202 104528.177 (3067456320)       (6)< MQTTStrncpy:746
20150202 104528.177 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62006f0

20150202 104528.177 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104528.177 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200778

20150202 104528.177 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104528.177 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104528.177 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104528.177 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104528.177 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104528.177 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104528.177 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104528.177 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104528.177 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104528.177 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104528.177 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104528.177 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104528.177 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104528.177 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104528.177 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104528.177 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104528.177 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104528.177 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104528.177 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104528.177 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104528.177 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104528.177 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104528.177 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104528.177 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104528.177 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104528.178 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104528.178 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104528.178 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104528.178 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104528.178 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104528.178 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104528.178 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104528.178 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104528.178 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104528.178 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104528.178 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104528.178 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104528.178 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104528.178 (3075849024)       (6)> Socket_putdatas:443
20150202 104528.178 (3075849024)        (7)> Socket_writev:399
20150202 104528.178 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104528.178 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104528.178 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104528.178 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104528.178 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104528.178 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104528.178 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104528.178 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104528.178 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104528.178 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104528.178 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104528.178 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104528.178 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104528.178 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104528.178 (3075849024)  (1)> Thread_wait_cond:402
20150202 104528.178 Return code 1 from read select
20150202 104528.178 (3067456320)    (3)> Socket_continueWrites:777
20150202 104528.178 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104528.178 Return code 1 from write select
20150202 104528.178 (3067456320)    (3)> isReady:192
20150202 104528.178 (3067456320)    (3)< isReady:197 (1)
20150202 104528.178 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104528.178 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104528.178 (3067456320)    (3)> Socket_getch:297
20150202 104528.178 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104529.176 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104529.176 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104529.176 queueChar: index is now 1, headerlen 1
20150202 104529.176 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104529.176 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104529.176 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104529.176 (3067456320)     (4)> Socket_getch:297
20150202 104529.176 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104529.176 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104529.176 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104529.176 queueChar: index is now 2, headerlen 2
20150202 104529.176 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104529.176 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104529.176 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104529.176 (3067456320)    (3)> Socket_getdata:336
20150202 104529.176 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104529.176 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104529.176 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104529.176 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104529.176 (3067456320)    (3)< Socket_getdata:370
20150202 104529.176 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200550

20150202 104529.176 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104529.176 (3067456320)     (4)> readUTFlen:352
20150202 104529.176 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62009d0

20150202 104529.176 (3067456320)     (4)< readUTFlen:364
20150202 104529.176 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104529.176 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104529.176 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104529.176 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-5;1422
20150202 104529.176 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104529.176 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200798

20150202 104529.176 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a78

20150202 104529.176 Calling messageArrived for client InFlight, queue depth 0
20150202 104529.176 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104529.176 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104529.176 (3067456320)       (6)> UTF8_validateString:155
20150202 104529.176 (3067456320)        (7)> UTF8_validate:129
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)         (8)> UTF8_char_validate:79
20150202 104529.176 (3067456320)         (8)< UTF8_char_validate:113
20150202 104529.176 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104529.176 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104529.176 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200928

20150202 104529.176 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62004b0

20150202 104529.176 (3067456320)       (6)> MQTTStrncpy:736
20150202 104529.176 (3067456320)       (6)< MQTTStrncpy:746
20150202 104529.176 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200650

20150202 104529.176 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104529.176 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200868

20150202 104529.176 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104529.176 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104529.176 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104529.176 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104529.176 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104529.176 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104529.176 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104529.176 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104529.176 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104529.176 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104529.176 (3075849024)  (1)> Thread_wait_cond:402
20150202 104529.176 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104529.176 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104529.176 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104529.176 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104529.176 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104529.176 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104529.176 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104529.177 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104529.177 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104529.177 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104529.177 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104529.177 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104529.177 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104529.177 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104529.177 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104529.177 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104529.177 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104529.177 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104529.177 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104529.177 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104529.177 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104529.177 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104529.177 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104529.177 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104529.177 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104529.177 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104529.177 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104530.178 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104530.178 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104530.178 (3075849024)       (6)> Socket_putdatas:443
20150202 104530.178 (3075849024)        (7)> Socket_writev:399
20150202 104530.178 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104530.178 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104530.178 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104530.178 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104530.178 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104530.178 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104530.178 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104530.178 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104530.178 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104530.178 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104530.178 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104530.178 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104530.178 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104530.178 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104530.178 (3075849024)  (1)> Thread_wait_cond:402
20150202 104530.178 Return code 0 from read select
20150202 104530.178 (3067456320)    (3)> Socket_continueWrites:777
20150202 104530.178 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104530.178 Return code 1 from write select
20150202 104530.178 (3067456320)    (3)> isReady:192
20150202 104530.178 (3067456320)    (3)< isReady:197 (0)
20150202 104530.178 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104530.178 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104530.178 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104530.178 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104530.178 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104530.178 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104530.178 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104530.178 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104530.178 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104530.178 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104530.178 Return code 1 from read select
20150202 104530.178 (3067456320)    (3)> Socket_continueWrites:777
20150202 104530.178 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104530.178 Return code 1 from write select
20150202 104530.178 (3067456320)    (3)> isReady:192
20150202 104530.281 (3067456320)    (3)< isReady:197 (1)
20150202 104530.281 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104530.281 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104530.281 (3067456320)    (3)> Socket_getch:297
20150202 104530.281 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104530.281 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104530.281 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104530.281 queueChar: index is now 1, headerlen 1
20150202 104530.281 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104530.281 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104530.281 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104530.281 (3067456320)     (4)> Socket_getch:297
20150202 104530.281 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104530.281 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104530.281 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104530.281 queueChar: index is now 2, headerlen 2
20150202 104530.281 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104530.281 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104530.281 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104530.281 (3067456320)    (3)> Socket_getdata:336
20150202 104530.282 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104530.282 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104530.282 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104530.282 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104530.282 (3067456320)    (3)< Socket_getdata:370
20150202 104530.282 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62004b0

20150202 104530.282 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104530.282 (3067456320)     (4)> readUTFlen:352
20150202 104530.282 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200550

20150202 104530.282 (3067456320)     (4)< readUTFlen:364
20150202 104530.282 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104530.282 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104530.282 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104530.282 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-6;1422
20150202 104530.282 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104530.282 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62009d0

20150202 104530.282 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f0

20150202 104530.282 Calling messageArrived for client InFlight, queue depth 0
20150202 104530.282 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104530.282 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104530.282 (3067456320)       (6)> UTF8_validateString:155
20150202 104530.282 (3067456320)        (7)> UTF8_validate:129
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)         (8)> UTF8_char_validate:79
20150202 104530.282 (3067456320)         (8)< UTF8_char_validate:113
20150202 104530.282 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104530.282 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104530.282 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200818

20150202 104530.282 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200798

20150202 104530.282 (3067456320)       (6)> MQTTStrncpy:736
20150202 104530.282 (3067456320)       (6)< MQTTStrncpy:746
20150202 104530.282 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a78

20150202 104530.282 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104530.282 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62007c8

20150202 104530.282 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104530.282 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104530.282 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104530.282 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104530.282 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104530.282 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104530.282 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104530.282 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104530.282 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104530.282 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104530.282 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104530.282 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104530.282 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104530.282 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104530.282 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104530.282 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104530.282 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104530.282 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104530.282 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104530.282 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104530.282 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104530.282 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104530.282 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104530.282 (3075849024)  (1)> Thread_wait_cond:402
20150202 104530.282 Return code 1 from read select
20150202 104530.282 (3067456320)    (3)> Socket_continueWrites:777
20150202 104530.282 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104530.282 Return code 1 from write select
20150202 104530.282 (3067456320)    (3)> isReady:192
20150202 104530.282 (3067456320)    (3)< isReady:197 (1)
20150202 104530.282 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104530.282 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104530.282 (3067456320)    (3)> Socket_getch:297
20150202 104531.180 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104531.180 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104531.180 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104531.180 queueChar: index is now 1, headerlen 1
20150202 104531.180 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104531.180 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104531.180 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104531.180 (3067456320)     (4)> Socket_getch:297
20150202 104531.180 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104531.180 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104531.180 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104531.180 queueChar: index is now 2, headerlen 2
20150202 104531.180 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104531.180 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104531.180 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104531.180 (3067456320)    (3)> Socket_getdata:336
20150202 104531.180 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104531.180 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104531.180 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104531.180 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104531.180 (3067456320)    (3)< Socket_getdata:370
20150202 104531.180 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62004b0

20150202 104531.180 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104531.180 (3067456320)     (4)> readUTFlen:352
20150202 104531.180 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200550

20150202 104531.180 (3067456320)     (4)< readUTFlen:364
20150202 104531.180 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104531.180 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104531.180 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104531.180 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-7;1422
20150202 104531.180 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104531.180 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62009d0

20150202 104531.180 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200650

20150202 104531.180 Calling messageArrived for client InFlight, queue depth 0
20150202 104531.180 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104531.180 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104531.180 (3067456320)       (6)> UTF8_validateString:155
20150202 104531.180 (3067456320)        (7)> UTF8_validate:129
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)         (8)> UTF8_char_validate:79
20150202 104531.180 (3067456320)         (8)< UTF8_char_validate:113
20150202 104531.180 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104531.180 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104531.180 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200928

20150202 104531.180 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005d0

20150202 104531.180 (3067456320)       (6)> MQTTStrncpy:736
20150202 104531.180 (3067456320)       (6)< MQTTStrncpy:746
20150202 104531.180 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62006f0

20150202 104531.180 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104531.180 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62006a0

20150202 104531.180 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104531.180 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104531.180 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104531.180 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104531.180 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104531.180 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104531.180 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104531.180 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104531.180 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104531.180 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104531.180 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104531.180 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104531.180 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104531.180 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104531.180 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104531.180 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104531.180 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104531.180 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104531.180 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104531.180 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104531.180 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104531.180 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104531.180 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104531.180 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104531.180 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104531.180 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104531.180 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104531.180 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104531.180 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104531.180 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104531.180 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104531.180 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104531.180 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104531.180 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104531.180 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104531.180 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104531.180 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104531.180 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104531.180 (3075849024)       (6)> Socket_putdatas:443
20150202 104531.180 (3075849024)        (7)> Socket_writev:399
20150202 104531.180 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104531.180 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104531.180 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104531.180 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104531.180 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104531.180 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104531.180 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104531.180 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104531.180 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104531.180 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104531.180 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104531.180 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104531.180 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104531.180 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104531.180 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104531.180 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104531.180 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104531.180 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104531.180 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104531.180 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104531.180 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104531.180 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104531.180 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104531.180 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104531.180 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104531.180 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104531.180 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104531.180 (3075849024)       (6)> Socket_putdatas:443
20150202 104531.180 (3075849024)        (7)> Socket_writev:399
20150202 104531.180 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104531.180 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104531.180 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104531.180 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104531.180 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104531.180 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104531.180 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104531.180 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104531.180 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104531.180 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104531.180 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104531.180 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104531.180 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104531.180 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104531.180 (3075849024)  (1)> Thread_wait_cond:402
20150202 104531.180 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104531.180 (3075849024)  (1)> Thread_wait_cond:402
20150202 104531.180 Return code 0 from read select
20150202 104531.180 (3067456320)    (3)> Socket_continueWrites:777
20150202 104531.180 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104531.180 Return code 1 from write select
20150202 104531.180 (3067456320)    (3)> isReady:192
20150202 104531.180 (3067456320)    (3)< isReady:197 (0)
20150202 104531.180 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104531.180 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104531.180 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104531.180 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104531.180 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104532.285 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104532.285 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104532.285 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104532.285 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104532.285 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104532.285 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104532.285 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104532.285 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104532.285 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104532.285 Return code 1 from read select
20150202 104532.285 (3067456320)    (3)> Socket_continueWrites:777
20150202 104532.285 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104532.285 Return code 1 from write select
20150202 104532.285 (3067456320)    (3)> isReady:192
20150202 104532.285 (3067456320)    (3)< isReady:197 (1)
20150202 104532.285 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104532.285 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104532.285 (3067456320)    (3)> Socket_getch:297
20150202 104532.285 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104532.285 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104532.285 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104532.285 queueChar: index is now 1, headerlen 1
20150202 104532.285 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104532.285 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104532.285 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104532.285 (3067456320)     (4)> Socket_getch:297
20150202 104532.285 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104532.285 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104532.285 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104532.285 queueChar: index is now 2, headerlen 2
20150202 104532.285 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104532.285 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104532.285 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104532.285 (3067456320)    (3)> Socket_getdata:336
20150202 104532.285 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104532.285 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104532.285 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104532.285 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104532.285 (3067456320)    (3)< Socket_getdata:370
20150202 104532.285 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005d0

20150202 104532.285 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104532.285 (3067456320)     (4)> readUTFlen:352
20150202 104532.285 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200798

20150202 104532.285 (3067456320)     (4)< readUTFlen:364
20150202 104532.285 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104532.285 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104532.285 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104532.285 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-8;1422
20150202 104532.285 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104532.285 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62004b0

20150202 104532.285 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200650

20150202 104532.285 Calling messageArrived for client InFlight, queue depth 0
20150202 104532.285 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104532.285 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104532.285 (3067456320)       (6)> UTF8_validateString:155
20150202 104532.285 (3067456320)        (7)> UTF8_validate:129
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.285 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.285 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.286 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.286 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.286 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.286 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.286 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.286 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.286 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.286 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.286 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.286 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.286 (3067456320)         (8)> UTF8_char_validate:79
20150202 104532.286 (3067456320)         (8)< UTF8_char_validate:113
20150202 104532.286 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104532.286 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104532.286 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a78

20150202 104532.286 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200550

20150202 104532.286 (3067456320)       (6)> MQTTStrncpy:736
20150202 104532.286 (3067456320)       (6)< MQTTStrncpy:746
20150202 104532.286 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200818

20150202 104532.286 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104532.286 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200868

20150202 104532.286 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104532.286 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104532.286 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104532.286 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104532.286 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104532.286 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104532.286 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104532.286 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104532.286 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104532.286 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104532.286 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104532.286 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104532.286 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104532.286 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104532.286 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104532.286 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104532.286 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104532.286 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104532.286 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104532.286 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104532.286 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104532.286 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104532.286 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104532.286 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104532.286 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104532.286 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104532.286 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104532.286 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104532.286 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104532.286 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104532.286 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104532.286 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104532.286 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104532.286 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104532.286 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104532.286 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104532.286 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104532.286 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104532.286 (3075849024)       (6)> Socket_putdatas:443
20150202 104532.286 (3075849024)        (7)> Socket_writev:399
20150202 104532.286 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104532.286 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104532.286 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104532.286 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104532.286 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104532.286 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104532.286 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104532.286 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104532.286 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104532.286 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104532.286 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104532.286 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104532.286 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104532.286 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104532.286 (3075849024)  (1)> Thread_wait_cond:402
20150202 104532.286 Return code 1 from read select
20150202 104532.286 (3067456320)    (3)> Socket_continueWrites:777
20150202 104532.286 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104532.286 Return code 1 from write select
20150202 104533.184 (3067456320)    (3)> isReady:192
20150202 104533.184 (3067456320)    (3)< isReady:197 (1)
20150202 104533.184 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104533.184 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104533.184 (3067456320)    (3)> Socket_getch:297
20150202 104533.184 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104533.184 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104533.184 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104533.184 queueChar: index is now 1, headerlen 1
20150202 104533.184 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104533.184 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104533.184 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104533.184 (3067456320)     (4)> Socket_getch:297
20150202 104533.184 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104533.184 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104533.184 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104533.184 queueChar: index is now 2, headerlen 2
20150202 104533.184 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104533.184 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104533.184 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104533.184 (3067456320)    (3)> Socket_getdata:336
20150202 104533.184 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104533.184 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104533.184 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104533.184 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104533.184 (3067456320)    (3)< Socket_getdata:370
20150202 104533.184 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200550

20150202 104533.184 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104533.184 (3067456320)     (4)> readUTFlen:352
20150202 104533.184 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005d0

20150202 104533.184 (3067456320)     (4)< readUTFlen:364
20150202 104533.184 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104533.184 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104533.184 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104533.184 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-9;1422
20150202 104533.184 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104533.184 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200798

20150202 104533.184 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f0

20150202 104533.184 Calling messageArrived for client InFlight, queue depth 0
20150202 104533.184 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104533.184 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104533.184 (3067456320)       (6)> UTF8_validateString:155
20150202 104533.184 (3067456320)        (7)> UTF8_validate:129
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)         (8)> UTF8_char_validate:79
20150202 104533.184 (3067456320)         (8)< UTF8_char_validate:113
20150202 104533.184 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104533.185 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104533.185 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200928

20150202 104533.185 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62004b0

20150202 104533.185 (3067456320)       (6)> MQTTStrncpy:736
20150202 104533.185 (3067456320)       (6)< MQTTStrncpy:746
20150202 104533.185 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200650

20150202 104533.185 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104533.185 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62008d8

20150202 104533.185 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104533.185 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104533.185 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104533.185 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104533.185 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104533.185 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104533.185 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104533.185 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104533.185 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104533.185 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104533.185 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104533.185 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104533.185 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104533.185 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104533.185 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104533.185 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104533.185 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104533.185 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104533.185 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104533.185 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104533.185 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104533.185 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104533.185 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104533.185 (3075849024)  (1)> Thread_wait_cond:402
20150202 104533.185 Return code 1 from read select
20150202 104533.185 (3067456320)    (3)> Socket_continueWrites:777
20150202 104533.185 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104533.185 Return code 1 from write select
20150202 104533.185 (3067456320)    (3)> isReady:192
20150202 104533.185 (3067456320)    (3)< isReady:197 (1)
20150202 104533.185 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104533.185 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104534.185 (3067456320)    (3)> Socket_getch:297
20150202 104534.185 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104534.185 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104534.185 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104534.185 queueChar: index is now 1, headerlen 1
20150202 104534.185 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104534.185 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104534.185 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104534.185 (3067456320)     (4)> Socket_getch:297
20150202 104534.185 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104534.185 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104534.185 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104534.185 queueChar: index is now 2, headerlen 2
20150202 104534.185 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104534.185 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104534.185 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104534.185 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104534.185 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104534.185 (3067456320)    (3)> Socket_getdata:336
20150202 104534.185 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104534.186 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104534.186 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104534.186 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104534.186 (3067456320)    (3)< Socket_getdata:370
20150202 104534.186 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200550

20150202 104534.186 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104534.186 (3067456320)     (4)> readUTFlen:352
20150202 104534.186 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005d0

20150202 104534.186 (3067456320)     (4)< readUTFlen:364
20150202 104534.186 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104534.186 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104534.186 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104534.186 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-10;142
20150202 104534.186 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104534.186 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200798

20150202 104534.186 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200818

20150202 104534.186 Calling messageArrived for client InFlight, queue depth 0
20150202 104534.186 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104534.186 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104534.186 (3067456320)       (6)> UTF8_validateString:155
20150202 104534.186 (3067456320)        (7)> UTF8_validate:129
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.186 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.186 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.186 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.186 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.186 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.186 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.186 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.186 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.186 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.186 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104534.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104534.187 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104534.187 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104534.187 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a78

20150202 104534.187 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62009d0

20150202 104534.187 (3067456320)       (6)> MQTTStrncpy:736
20150202 104534.187 (3067456320)       (6)< MQTTStrncpy:746
20150202 104534.187 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62006f0

20150202 104534.187 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104534.187 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62009b0

20150202 104534.187 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104534.187 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104534.187 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104534.187 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104534.187 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104534.187 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104534.187 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104534.187 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104534.187 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104534.187 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104534.187 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104534.187 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104534.187 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104534.187 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104534.187 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104534.187 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104534.187 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104534.187 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104534.187 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104534.187 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104534.187 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104534.187 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104534.187 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104534.187 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104534.187 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104534.187 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104534.187 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104534.187 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104534.187 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104534.187 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104534.187 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104534.187 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104534.187 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104534.187 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104534.188 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104534.188 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104534.188 (3075849024)       (6)> Socket_putdatas:443
20150202 104534.188 (3075849024)        (7)> Socket_writev:399
20150202 104534.188 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104534.188 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104534.188 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104534.188 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104534.188 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104534.188 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104534.188 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104534.188 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104534.188 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104534.188 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104534.188 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104534.188 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104534.188 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104534.188 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104534.188 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104534.188 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104534.188 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104534.188 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104534.188 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104534.188 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104534.188 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104534.188 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104534.188 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104534.188 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104534.188 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104534.188 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104534.188 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104534.188 (3075849024)       (6)> Socket_putdatas:443
20150202 104534.188 (3075849024)        (7)> Socket_writev:399
20150202 104534.188 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104534.188 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104534.188 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104534.188 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104534.188 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104534.188 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104534.188 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104534.189 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104534.189 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104534.189 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104534.189 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104534.189 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104534.189 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104534.189 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104534.189 (3075849024)  (1)> Thread_wait_cond:402
20150202 104534.189 Return code 1 from read select
20150202 104534.189 (3067456320)    (3)> Socket_continueWrites:777
20150202 104534.189 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104534.189 Return code 1 from write select
20150202 104534.189 (3067456320)    (3)> isReady:192
20150202 104534.189 (3067456320)    (3)< isReady:197 (1)
20150202 104534.189 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104534.189 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104534.189 (3067456320)    (3)> Socket_getch:297
20150202 104534.189 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104534.189 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104534.189 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104535.188 queueChar: index is now 1, headerlen 1
20150202 104535.188 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104535.188 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104535.188 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104535.188 (3067456320)     (4)> Socket_getch:297
20150202 104535.188 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104535.188 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104535.188 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104535.188 queueChar: index is now 2, headerlen 2
20150202 104535.188 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104535.188 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104535.188 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104535.188 (3067456320)    (3)> Socket_getdata:336
20150202 104535.188 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104535.188 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104535.188 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104535.188 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104535.188 (3067456320)    (3)< Socket_getdata:370
20150202 104535.188 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62009d0

20150202 104535.188 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104535.188 (3067456320)     (4)> readUTFlen:352
20150202 104535.188 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62004b0

20150202 104535.188 (3067456320)     (4)< readUTFlen:364
20150202 104535.188 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104535.188 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104535.188 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104535.188 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-11;142
20150202 104535.188 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104535.188 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200550

20150202 104535.188 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200818

20150202 104535.188 Calling messageArrived for client InFlight, queue depth 0
20150202 104535.188 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104535.188 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104535.188 (3067456320)       (6)> UTF8_validateString:155
20150202 104535.188 (3067456320)        (7)> UTF8_validate:129
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104535.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104535.188 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104535.188 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104535.188 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200650

20150202 104535.188 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005d0

20150202 104535.188 (3067456320)       (6)> MQTTStrncpy:736
20150202 104535.188 (3067456320)       (6)< MQTTStrncpy:746
20150202 104535.188 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200928

20150202 104535.188 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104535.188 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200a28

20150202 104535.188 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104535.188 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104535.188 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104535.188 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104535.188 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104535.188 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104535.188 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104535.188 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104535.188 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104535.188 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104535.188 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104535.188 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104535.188 (3075849024)  (1)> Thread_wait_cond:402
20150202 104535.188 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104535.188 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104535.188 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104535.188 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104535.188 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104535.188 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104535.188 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104535.188 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104535.188 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104535.188 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104535.188 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104535.188 Return code 1 from read select
20150202 104535.188 (3067456320)    (3)> Socket_continueWrites:777
20150202 104535.188 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104535.188 Return code 1 from write select
20150202 104535.188 (3067456320)    (3)> isReady:192
20150202 104535.188 (3067456320)    (3)< isReady:197 (1)
20150202 104535.188 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104535.188 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104535.188 (3067456320)    (3)> Socket_getch:297
20150202 104535.188 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104535.188 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104535.188 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104535.188 queueChar: index is now 1, headerlen 1
20150202 104535.188 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104535.188 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104535.188 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104536.187 (3067456320)     (4)> Socket_getch:297
20150202 104536.187 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104536.187 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104536.187 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104536.187 queueChar: index is now 2, headerlen 2
20150202 104536.187 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104536.187 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104536.187 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104536.187 (3067456320)    (3)> Socket_getdata:336
20150202 104536.187 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104536.187 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104536.187 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104536.187 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104536.187 (3067456320)    (3)< Socket_getdata:370
20150202 104536.187 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62009d0

20150202 104536.187 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104536.187 (3067456320)     (4)> readUTFlen:352
20150202 104536.187 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62004b0

20150202 104536.187 (3067456320)     (4)< readUTFlen:364
20150202 104536.187 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104536.187 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104536.187 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104536.187 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-12;142
20150202 104536.187 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104536.187 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200550

20150202 104536.187 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f0

20150202 104536.187 Calling messageArrived for client InFlight, queue depth 0
20150202 104536.187 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104536.187 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104536.187 (3067456320)       (6)> UTF8_validateString:155
20150202 104536.187 (3067456320)        (7)> UTF8_validate:129
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.187 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.187 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.188 (3067456320)         (8)> UTF8_char_validate:79
20150202 104536.188 (3067456320)         (8)< UTF8_char_validate:113
20150202 104536.188 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104536.188 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104536.188 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a78

20150202 104536.188 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200798

20150202 104536.188 (3067456320)       (6)> MQTTStrncpy:736
20150202 104536.188 (3067456320)       (6)< MQTTStrncpy:746
20150202 104536.188 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200818

20150202 104536.188 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104536.188 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200740

20150202 104536.188 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104536.188 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104536.188 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104536.188 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104536.188 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104536.188 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104536.188 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104536.188 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104536.188 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104536.188 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104536.188 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104536.188 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104536.188 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104536.188 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104536.188 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104536.188 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104536.188 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104536.188 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104536.188 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104536.188 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104536.188 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104536.188 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104536.188 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104536.188 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104536.188 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104536.188 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104536.188 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104536.188 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104536.188 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104536.188 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104536.188 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104536.188 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104536.188 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104536.188 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104536.188 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104536.188 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104536.188 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104536.188 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104536.188 (3075849024)       (6)> Socket_putdatas:443
20150202 104536.188 (3075849024)        (7)> Socket_writev:399
20150202 104536.188 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104536.188 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104536.188 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104536.188 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104536.188 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104536.188 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104536.188 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104536.188 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104536.188 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104536.188 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104536.188 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104536.188 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104536.188 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104536.188 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104536.188 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104536.188 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104536.188 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104536.188 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104536.188 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104536.188 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104536.188 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104536.188 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104536.188 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104536.188 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104536.189 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104536.189 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104536.189 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104536.189 (3075849024)       (6)> Socket_putdatas:443
20150202 104536.189 (3075849024)        (7)> Socket_writev:399
20150202 104536.189 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104536.189 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104536.189 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104536.189 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104536.189 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104536.189 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104536.189 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104536.189 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104536.189 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104536.189 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104536.189 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104536.189 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104536.189 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104536.189 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104536.189 (3075849024)  (1)> Thread_wait_cond:402
20150202 104537.189 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104537.189 (3075849024)  (1)> Thread_wait_cond:402
20150202 104537.189 Return code 0 from read select
20150202 104537.189 (3067456320)    (3)> Socket_continueWrites:777
20150202 104537.189 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104537.189 Return code 1 from write select
20150202 104537.189 (3067456320)    (3)> isReady:192
20150202 104537.189 (3067456320)    (3)< isReady:197 (0)
20150202 104537.189 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104537.189 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104537.189 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104537.189 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104537.189 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104537.189 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104537.189 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104537.189 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104537.189 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104537.189 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104537.189 Return code 1 from read select
20150202 104537.189 (3067456320)    (3)> Socket_continueWrites:777
20150202 104537.290 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104537.290 Return code 1 from write select
20150202 104537.290 (3067456320)    (3)> isReady:192
20150202 104537.290 (3067456320)    (3)< isReady:197 (1)
20150202 104537.290 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104537.290 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104537.290 (3067456320)    (3)> Socket_getch:297
20150202 104537.290 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104537.290 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104537.290 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104537.290 queueChar: index is now 1, headerlen 1
20150202 104537.290 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104537.290 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104537.290 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104537.290 (3067456320)     (4)> Socket_getch:297
20150202 104537.290 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104537.290 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104537.290 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104537.290 queueChar: index is now 2, headerlen 2
20150202 104537.290 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104537.290 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104537.290 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104537.290 (3067456320)    (3)> Socket_getdata:336
20150202 104537.290 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104537.290 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104537.290 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104537.290 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104537.290 (3067456320)    (3)< Socket_getdata:370
20150202 104537.290 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200798

20150202 104537.290 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104537.290 (3067456320)     (4)> readUTFlen:352
20150202 104537.290 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005d0

20150202 104537.290 (3067456320)     (4)< readUTFlen:364
20150202 104537.290 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104537.290 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104537.290 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104537.290 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-13;142
20150202 104537.290 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104537.290 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62009d0

20150202 104537.290 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f0

20150202 104537.291 Calling messageArrived for client InFlight, queue depth 0
20150202 104537.291 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104537.291 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104537.291 (3067456320)       (6)> UTF8_validateString:155
20150202 104537.291 (3067456320)        (7)> UTF8_validate:129
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104537.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104537.291 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104537.291 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104537.291 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200928

20150202 104537.291 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62004b0

20150202 104537.291 (3067456320)       (6)> MQTTStrncpy:736
20150202 104537.291 (3067456320)       (6)< MQTTStrncpy:746
20150202 104537.291 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200650

20150202 104537.291 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104537.291 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62009b0

20150202 104537.291 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104537.291 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104537.291 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104537.291 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104537.291 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104537.291 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104537.291 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104537.291 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104537.291 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104537.291 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104537.291 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104537.291 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104537.291 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104537.291 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104537.291 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104537.291 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104537.291 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104537.291 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104537.291 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104537.291 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104537.291 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104537.291 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104537.291 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104537.291 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104537.291 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104537.291 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104537.291 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104537.291 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104537.291 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104537.291 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104537.292 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104537.292 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104537.292 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104537.292 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104537.292 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104537.292 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104537.292 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104537.292 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104537.292 (3075849024)       (6)> Socket_putdatas:443
20150202 104537.292 (3075849024)        (7)> Socket_writev:399
20150202 104537.292 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104537.292 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104537.292 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104537.292 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104537.292 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104537.292 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104537.292 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104537.292 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104537.292 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104537.292 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104537.292 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104537.292 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104537.292 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104537.292 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104537.292 (3075849024)  (1)> Thread_wait_cond:402
20150202 104537.292 Return code 1 from read select
20150202 104537.292 (3067456320)    (3)> Socket_continueWrites:777
20150202 104537.292 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104537.292 Return code 1 from write select
20150202 104537.292 (3067456320)    (3)> isReady:192
20150202 104537.292 (3067456320)    (3)< isReady:197 (1)
20150202 104537.292 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104537.292 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104537.292 (3067456320)    (3)> Socket_getch:297
20150202 104537.292 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104537.292 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104537.292 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104537.292 queueChar: index is now 1, headerlen 1
20150202 104537.292 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104537.292 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104538.190 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104538.190 (3067456320)     (4)> Socket_getch:297
20150202 104538.190 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104538.190 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104538.190 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104538.190 queueChar: index is now 2, headerlen 2
20150202 104538.190 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104538.190 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104538.190 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104538.190 (3067456320)    (3)> Socket_getdata:336
20150202 104538.190 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104538.190 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104538.190 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104538.190 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104538.190 (3067456320)    (3)< Socket_getdata:370
20150202 104538.190 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62004b0

20150202 104538.190 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104538.190 (3067456320)     (4)> readUTFlen:352
20150202 104538.190 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200798

20150202 104538.190 (3067456320)     (4)< readUTFlen:364
20150202 104538.191 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104538.191 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104538.191 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104538.191 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-14;142
20150202 104538.191 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104538.191 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005d0

20150202 104538.191 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200818

20150202 104538.191 Calling messageArrived for client InFlight, queue depth 0
20150202 104538.191 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104538.191 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104538.191 (3067456320)       (6)> UTF8_validateString:155
20150202 104538.191 (3067456320)        (7)> UTF8_validate:129
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)         (8)> UTF8_char_validate:79
20150202 104538.191 (3067456320)         (8)< UTF8_char_validate:113
20150202 104538.191 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104538.191 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104538.191 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a78

20150202 104538.191 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62009d0

20150202 104538.191 (3067456320)       (6)> MQTTStrncpy:736
20150202 104538.191 (3067456320)       (6)< MQTTStrncpy:746
20150202 104538.191 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62006f0

20150202 104538.191 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104538.191 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62006a0

20150202 104538.191 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104538.191 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104538.191 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104538.192 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104538.192 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104538.192 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104538.192 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104538.192 (3075849024)  (1)> Thread_wait_cond:402
20150202 104538.192 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104538.192 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104538.192 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104538.192 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104538.192 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104538.192 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104538.192 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104538.192 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104538.192 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104538.192 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104538.192 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104538.192 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104538.192 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104538.192 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104538.192 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104538.192 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104538.192 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104538.192 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104538.192 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104538.192 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104538.192 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104538.192 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104538.192 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104538.192 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104538.192 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104538.192 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104538.192 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104538.192 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104538.192 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104538.192 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104538.192 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104538.192 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104538.192 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104538.192 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104538.192 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104539.193 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104539.193 (3075849024)       (6)> Socket_putdatas:443
20150202 104539.193 (3075849024)        (7)> Socket_writev:399
20150202 104539.193 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104539.193 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104539.193 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104539.193 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104539.193 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104539.193 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104539.193 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104539.193 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104539.193 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104539.193 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104539.193 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104539.193 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104539.193 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104539.193 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104539.193 (3075849024)  (1)> Thread_wait_cond:402
20150202 104539.193 Return code 0 from read select
20150202 104539.193 (3067456320)    (3)> Socket_continueWrites:777
20150202 104539.193 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104539.193 Return code 1 from write select
20150202 104539.193 (3067456320)    (3)> isReady:192
20150202 104539.193 (3067456320)    (3)< isReady:197 (0)
20150202 104539.193 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104539.193 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104539.193 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104539.193 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104539.193 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104539.193 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104539.193 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104539.193 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104539.193 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104539.193 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104539.193 Return code 1 from read select
20150202 104539.193 (3067456320)    (3)> Socket_continueWrites:777
20150202 104539.193 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104539.193 Return code 1 from write select
20150202 104539.193 (3067456320)    (3)> isReady:192
20150202 104539.193 (3067456320)    (3)< isReady:197 (1)
20150202 104539.295 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104539.295 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104539.295 (3067456320)    (3)> Socket_getch:297
20150202 104539.295 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104539.295 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104539.295 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104539.295 queueChar: index is now 1, headerlen 1
20150202 104539.295 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104539.295 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104539.295 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104539.295 (3067456320)     (4)> Socket_getch:297
20150202 104539.295 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104539.295 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104539.295 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104539.295 queueChar: index is now 2, headerlen 2
20150202 104539.295 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104539.295 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104539.295 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104539.295 (3067456320)    (3)> Socket_getdata:336
20150202 104539.295 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104539.295 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104539.295 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104539.295 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104539.295 (3067456320)    (3)< Socket_getdata:370
20150202 104539.295 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62009d0

20150202 104539.295 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104539.295 (3067456320)     (4)> readUTFlen:352
20150202 104539.295 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62004b0

20150202 104539.295 (3067456320)     (4)< readUTFlen:364
20150202 104539.295 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104539.295 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104539.295 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104539.295 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-15;142
20150202 104539.295 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104539.295 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200798

20150202 104539.295 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200650

20150202 104539.295 Calling messageArrived for client InFlight, queue depth 0
20150202 104539.295 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104539.295 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104539.295 (3067456320)       (6)> UTF8_validateString:155
20150202 104539.295 (3067456320)        (7)> UTF8_validate:129
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104539.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104539.295 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104539.295 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104539.295 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200928

20150202 104539.295 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005d0

20150202 104539.295 (3067456320)       (6)> MQTTStrncpy:736
20150202 104539.295 (3067456320)       (6)< MQTTStrncpy:746
20150202 104539.295 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b78

20150202 104539.295 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104539.295 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200778

20150202 104539.295 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104539.295 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104539.295 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104539.295 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104539.295 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1136 bytes

20150202 104539.295 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1072 bytes

20150202 104539.295 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104539.295 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104539.295 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1040 bytes

20150202 104539.295 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104539.295 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104539.295 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104539.295 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1008 bytes

20150202 104539.295 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104539.296 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104539.296 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104539.296 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104539.296 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104539.296 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104539.296 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104539.296 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104539.296 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104539.296 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104539.296 (3075849024)  (1)> Thread_wait_cond:402
20150202 104539.296 Return code 1 from read select
20150202 104539.296 (3067456320)    (3)> Socket_continueWrites:777
20150202 104539.296 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104539.296 Return code 1 from write select
20150202 104539.296 (3067456320)    (3)> isReady:192
20150202 104539.296 (3067456320)    (3)< isReady:197 (1)
20150202 104539.296 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104539.296 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104539.296 (3067456320)    (3)> Socket_getch:297
20150202 104539.296 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104540.196 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104540.196 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104540.196 queueChar: index is now 1, headerlen 1
20150202 104540.196 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104540.196 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104540.196 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104540.196 (3067456320)     (4)> Socket_getch:297
20150202 104540.196 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104540.196 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104540.196 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104540.196 queueChar: index is now 2, headerlen 2
20150202 104540.196 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104540.196 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104540.196 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104540.196 (3067456320)    (3)> Socket_getdata:336
20150202 104540.196 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104540.196 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104540.196 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104540.196 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104540.196 (3067456320)    (3)< Socket_getdata:370
20150202 104540.196 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62009d0

20150202 104540.196 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104540.196 (3067456320)     (4)> readUTFlen:352
20150202 104540.196 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62004b0

20150202 104540.196 (3067456320)     (4)< readUTFlen:364
20150202 104540.196 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104540.196 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104540.196 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104540.196 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-16;142
20150202 104540.196 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104540.196 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200798

20150202 104540.196 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200818

20150202 104540.196 Calling messageArrived for client InFlight, queue depth 0
20150202 104540.196 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104540.196 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104540.196 (3067456320)       (6)> UTF8_validateString:155
20150202 104540.196 (3067456320)        (7)> UTF8_validate:129
20150202 104540.196 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.196 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.196 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)         (8)> UTF8_char_validate:79
20150202 104540.197 (3067456320)         (8)< UTF8_char_validate:113
20150202 104540.197 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104540.197 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104540.197 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62006f0

20150202 104540.197 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200550

20150202 104540.197 (3067456320)       (6)> MQTTStrncpy:736
20150202 104540.197 (3067456320)       (6)< MQTTStrncpy:746
20150202 104540.197 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a78

20150202 104540.197 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104540.197 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200580

20150202 104540.197 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104540.197 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104540.197 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104540.197 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104540.197 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1312 bytes

20150202 104540.197 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1248 bytes

20150202 104540.197 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104540.197 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104540.197 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1216 bytes

20150202 104540.197 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104540.197 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104540.197 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104540.197 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1184 bytes

20150202 104540.197 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104540.197 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104540.197 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104540.197 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104540.197 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104540.198 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104540.198 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104540.198 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104540.198 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104540.198 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104540.198 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104540.198 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104540.198 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104540.198 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104540.198 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1184 bytes

20150202 104540.198 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1152 bytes

20150202 104540.198 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104540.198 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104540.198 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104540.198 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104540.198 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104540.198 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104540.198 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104540.198 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104540.198 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104540.198 (3075849024)       (6)> Socket_putdatas:443
20150202 104540.198 (3075849024)        (7)> Socket_writev:399
20150202 104540.198 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104540.198 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104540.198 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1200 bytes

20150202 104540.198 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104540.198 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1184 bytes

20150202 104540.198 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104540.198 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104540.198 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104540.198 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104540.198 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1168 bytes

20150202 104540.198 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1136 bytes

20150202 104540.198 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1104 bytes

20150202 104540.198 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104540.198 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104540.198 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104540.198 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104540.198 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104540.198 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104540.198 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104540.198 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104540.198 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104540.198 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104540.198 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104540.198 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104540.198 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104540.198 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104540.198 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104540.198 (3075849024)       (6)> Socket_putdatas:443
20150202 104540.198 (3075849024)        (7)> Socket_writev:399
20150202 104540.198 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104540.198 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104540.198 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104540.198 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104540.198 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104540.198 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104540.198 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104540.198 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104540.198 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104540.198 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104540.198 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104540.198 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104540.198 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104540.198 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104540.198 (3075849024)  (1)> Thread_wait_cond:402
20150202 104540.198 Return code 1 from read select
20150202 104540.198 (3067456320)    (3)> Socket_continueWrites:777
20150202 104540.198 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104540.198 Return code 1 from write select
20150202 104540.198 (3067456320)    (3)> isReady:192
20150202 104540.198 (3067456320)    (3)< isReady:197 (1)
20150202 104540.198 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104540.198 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104540.198 (3067456320)    (3)> Socket_getch:297
20150202 104540.198 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104540.198 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104540.198 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104540.198 queueChar: index is now 1, headerlen 1
20150202 104540.198 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104541.198 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104541.198 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104541.198 (3067456320)     (4)> Socket_getch:297
20150202 104541.198 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104541.198 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104541.198 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104541.198 queueChar: index is now 2, headerlen 2
20150202 104541.198 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104541.198 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104541.198 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104541.198 (3067456320)    (3)> Socket_getdata:336
20150202 104541.198 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104541.198 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104541.198 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104541.198 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104541.198 (3067456320)    (3)< Socket_getdata:370
20150202 104541.198 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200550

20150202 104541.198 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104541.198 (3067456320)     (4)> readUTFlen:352
20150202 104541.198 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005d0

20150202 104541.198 (3067456320)     (4)< readUTFlen:364
20150202 104541.198 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104541.198 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104541.198 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104541.198 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-17;142
20150202 104541.198 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104541.198 (3075849024)  (1)> Thread_wait_cond:402
20150202 104541.198 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104541.198 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200498

20150202 104541.198 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200818

20150202 104541.198 Calling messageArrived for client InFlight, queue depth 0
20150202 104541.198 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104541.198 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104541.198 (3067456320)       (6)> UTF8_validateString:155
20150202 104541.198 (3067456320)        (7)> UTF8_validate:129
20150202 104541.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)         (8)> UTF8_char_validate:79
20150202 104541.199 (3067456320)         (8)< UTF8_char_validate:113
20150202 104541.199 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104541.199 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104541.199 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200500

20150202 104541.199 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200708

20150202 104541.199 (3067456320)       (6)> MQTTStrncpy:736
20150202 104541.199 (3067456320)       (6)< MQTTStrncpy:746
20150202 104541.199 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200620

20150202 104541.199 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104541.199 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200790

20150202 104541.200 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104541.200 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104541.200 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104541.200 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104541.200 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104541.200 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104541.200 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104541.200 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104541.200 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104541.200 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104541.200 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104541.200 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104541.200 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104541.200 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104541.200 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104541.200 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104541.200 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104541.200 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104541.200 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104541.200 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104541.200 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104541.200 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104541.200 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104541.200 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104541.200 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104541.200 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104541.200 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104541.200 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104541.200 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104541.200 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104541.200 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104541.200 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104541.200 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104541.200 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104541.200 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104541.200 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104541.200 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104541.200 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104541.200 (3075849024)       (6)> Socket_putdatas:443
20150202 104541.200 (3075849024)        (7)> Socket_writev:399
20150202 104541.201 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104541.201 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104541.201 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104541.201 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104541.201 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104541.201 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104541.201 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104541.201 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104541.201 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104541.201 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104541.201 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104541.201 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104541.201 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104541.201 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104541.201 (3075849024)  (1)> Thread_wait_cond:402
20150202 104541.201 Return code 1 from read select
20150202 104541.201 (3067456320)    (3)> Socket_continueWrites:777
20150202 104541.201 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104541.201 Return code 1 from write select
20150202 104541.201 (3067456320)    (3)> isReady:192
20150202 104542.198 (3067456320)    (3)< isReady:197 (1)
20150202 104542.198 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104542.198 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104542.198 (3067456320)    (3)> Socket_getch:297
20150202 104542.198 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104542.198 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104542.198 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104542.198 queueChar: index is now 1, headerlen 1
20150202 104542.198 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104542.198 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104542.198 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104542.198 (3067456320)     (4)> Socket_getch:297
20150202 104542.198 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104542.198 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104542.198 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104542.198 queueChar: index is now 2, headerlen 2
20150202 104542.198 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104542.198 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104542.198 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104542.198 (3067456320)    (3)> Socket_getdata:336
20150202 104542.198 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104542.198 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104542.198 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104542.198 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104542.198 (3067456320)    (3)< Socket_getdata:370
20150202 104542.198 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200550

20150202 104542.198 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104542.198 (3067456320)     (4)> readUTFlen:352
20150202 104542.198 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005d0

20150202 104542.198 (3067456320)     (4)< readUTFlen:364
20150202 104542.198 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104542.198 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104542.198 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104542.198 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-18;142
20150202 104542.198 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104542.198 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200498

20150202 104542.198 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200818

20150202 104542.198 Calling messageArrived for client InFlight, queue depth 0
20150202 104542.198 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104542.198 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104542.198 (3067456320)       (6)> UTF8_validateString:155
20150202 104542.198 (3067456320)        (7)> UTF8_validate:129
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)         (8)> UTF8_char_validate:79
20150202 104542.198 (3067456320)         (8)< UTF8_char_validate:113
20150202 104542.198 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104542.198 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104542.199 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200620

20150202 104542.199 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200500

20150202 104542.199 (3067456320)       (6)> MQTTStrncpy:736
20150202 104542.199 (3067456320)       (6)< MQTTStrncpy:746
20150202 104542.199 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62008a8

20150202 104542.199 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104542.199 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b58

20150202 104542.199 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104542.199 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104542.199 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104542.199 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104542.199 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104542.199 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104542.199 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104542.199 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104542.199 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104542.199 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104542.199 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104542.199 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104542.199 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104542.199 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104542.199 (3075849024)  (1)> Thread_wait_cond:402
20150202 104542.199 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104542.199 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104542.199 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104542.199 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104542.199 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104542.199 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104542.199 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104542.199 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104542.199 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104542.199 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104542.199 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104542.199 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104542.199 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104542.199 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104542.199 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104542.199 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104542.199 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104542.199 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104543.200 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104543.200 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104543.200 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104543.200 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104543.200 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104543.200 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104543.200 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104543.200 (3075849024)       (6)> Socket_putdatas:443
20150202 104543.200 (3075849024)        (7)> Socket_writev:399
20150202 104543.200 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104543.200 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104543.200 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104543.200 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104543.200 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104543.200 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104543.200 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104543.200 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104543.200 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104543.200 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104543.200 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104543.200 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104543.200 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104543.200 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104543.200 (3075849024)  (1)> Thread_wait_cond:402
20150202 104543.200 Return code 1 from read select
20150202 104543.200 (3067456320)    (3)> Socket_continueWrites:777
20150202 104543.200 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104543.200 Return code 1 from write select
20150202 104543.200 (3067456320)    (3)> isReady:192
20150202 104543.200 (3067456320)    (3)< isReady:197 (1)
20150202 104543.200 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104543.200 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104543.200 (3067456320)    (3)> Socket_getch:297
20150202 104543.200 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104543.200 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104543.200 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104543.200 queueChar: index is now 1, headerlen 1
20150202 104543.200 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104543.200 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104543.200 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104543.202 (3067456320)     (4)> Socket_getch:297
20150202 104543.202 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104543.202 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104543.202 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104543.202 queueChar: index is now 2, headerlen 2
20150202 104543.202 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104543.202 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104543.202 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104543.202 (3067456320)    (3)> Socket_getdata:336
20150202 104543.202 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104543.202 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104543.202 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104543.202 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104543.202 (3067456320)    (3)< Socket_getdata:370
20150202 104543.202 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200500

20150202 104543.202 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104543.202 (3067456320)     (4)> readUTFlen:352
20150202 104543.202 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200550

20150202 104543.202 (3067456320)     (4)< readUTFlen:364
20150202 104543.202 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104543.203 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104543.203 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104543.203 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-19;142
20150202 104543.203 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104543.203 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005d0

20150202 104543.203 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200818

20150202 104543.203 Calling messageArrived for client InFlight, queue depth 0
20150202 104543.203 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104543.203 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104543.203 (3067456320)       (6)> UTF8_validateString:155
20150202 104543.203 (3067456320)        (7)> UTF8_validate:129
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104543.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104543.203 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104543.203 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104543.203 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200620

20150202 104543.203 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200498

20150202 104543.203 (3067456320)       (6)> MQTTStrncpy:736
20150202 104543.203 (3067456320)       (6)< MQTTStrncpy:746
20150202 104543.203 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62008a8

20150202 104543.203 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104543.203 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200888

20150202 104543.203 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104543.203 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104543.203 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104543.203 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104543.204 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104543.204 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104543.204 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104543.204 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104543.204 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104543.204 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104543.204 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104543.204 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104543.204 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104543.204 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104543.204 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104543.204 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104543.204 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104543.204 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104543.204 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104543.204 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104543.204 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104543.204 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104543.204 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104543.204 (3075849024)  (1)> Thread_wait_cond:402
20150202 104544.202 Return code 1 from read select
20150202 104544.202 (3067456320)    (3)> Socket_continueWrites:777
20150202 104544.202 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104544.202 Return code 1 from write select
20150202 104544.202 (3067456320)    (3)> isReady:192
20150202 104544.202 (3067456320)    (3)< isReady:197 (1)
20150202 104544.202 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104544.202 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104544.202 (3067456320)    (3)> Socket_getch:297
20150202 104544.202 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104544.202 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104544.202 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104544.202 queueChar: index is now 1, headerlen 1
20150202 104544.202 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104544.202 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104544.202 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104544.202 (3067456320)     (4)> Socket_getch:297
20150202 104544.202 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104544.202 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104544.202 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104544.203 queueChar: index is now 2, headerlen 2
20150202 104544.203 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104544.203 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104544.203 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104544.203 (3067456320)    (3)> Socket_getdata:336
20150202 104544.203 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104544.203 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104544.203 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104544.203 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104544.203 (3067456320)    (3)< Socket_getdata:370
20150202 104544.203 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200500

20150202 104544.203 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104544.203 (3067456320)     (4)> readUTFlen:352
20150202 104544.203 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200550

20150202 104544.203 (3067456320)     (4)< readUTFlen:364
20150202 104544.203 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104544.203 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104544.203 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104544.203 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-20;142
20150202 104544.203 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104544.203 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005d0

20150202 104544.203 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200818

20150202 104544.203 Calling messageArrived for client InFlight, queue depth 0
20150202 104544.203 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104544.203 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104544.203 (3067456320)       (6)> UTF8_validateString:155
20150202 104544.203 (3067456320)        (7)> UTF8_validate:129
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)         (8)> UTF8_char_validate:79
20150202 104544.203 (3067456320)         (8)< UTF8_char_validate:113
20150202 104544.203 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104544.203 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104544.203 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200910

20150202 104544.203 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62009d0

20150202 104544.203 (3067456320)       (6)> MQTTStrncpy:736
20150202 104544.203 (3067456320)       (6)< MQTTStrncpy:746
20150202 104544.203 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a50

20150202 104544.203 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104544.203 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200af0

20150202 104544.203 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104544.203 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104544.203 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104544.203 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104544.203 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104544.203 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104544.203 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104544.203 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104544.204 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104544.204 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104544.204 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104544.204 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104544.204 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104544.204 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104544.204 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104544.204 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104544.204 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104544.204 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104544.204 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104544.204 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104544.204 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104544.204 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104544.204 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104544.204 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104544.204 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104544.204 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104544.204 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104544.204 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104544.204 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104544.204 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104544.204 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104544.204 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104544.204 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104544.204 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104544.204 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104544.204 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104544.204 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104544.204 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104544.204 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104544.204 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104544.204 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104544.204 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104544.204 (3075849024)       (6)> Socket_putdatas:443
20150202 104544.204 (3075849024)        (7)> Socket_writev:399
20150202 104544.204 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104544.204 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104544.204 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104544.204 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104544.205 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104544.205 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104544.205 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104544.205 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104544.205 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104544.205 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104544.205 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104544.205 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104544.205 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104544.205 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104544.205 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104544.205 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104544.205 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104544.205 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104544.205 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104544.205 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104544.205 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104544.205 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104544.205 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104544.205 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104544.205 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104544.205 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104544.205 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104544.205 (3075849024)       (6)> Socket_putdatas:443
20150202 104544.205 (3075849024)        (7)> Socket_writev:399
20150202 104544.205 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104544.205 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104544.205 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104544.205 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104544.205 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104544.205 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104544.205 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104544.205 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104544.205 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104544.205 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104544.205 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104544.205 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104544.205 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104544.205 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104544.205 (3075849024)  (1)> Thread_wait_cond:402
20150202 104545.203 Return code 1 from read select
20150202 104545.203 (3067456320)    (3)> Socket_continueWrites:777
20150202 104545.203 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104545.203 Return code 1 from write select
20150202 104545.203 (3067456320)    (3)> isReady:192
20150202 104545.203 (3067456320)    (3)< isReady:197 (1)
20150202 104545.203 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104545.203 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104545.203 (3067456320)    (3)> Socket_getch:297
20150202 104545.203 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104545.203 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104545.203 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104545.203 queueChar: index is now 1, headerlen 1
20150202 104545.203 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104545.203 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104545.203 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104545.203 (3067456320)     (4)> Socket_getch:297
20150202 104545.203 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104545.203 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104545.203 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104545.205 queueChar: index is now 2, headerlen 2
20150202 104545.205 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104545.205 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104545.205 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104545.205 (3067456320)    (3)> Socket_getdata:336
20150202 104545.205 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104545.205 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104545.205 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104545.205 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104545.205 (3067456320)    (3)< Socket_getdata:370
20150202 104545.205 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62009d0

20150202 104545.205 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104545.205 (3067456320)     (4)> readUTFlen:352
20150202 104545.205 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200498

20150202 104545.205 (3067456320)     (4)< readUTFlen:364
20150202 104545.205 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104545.205 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104545.205 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104545.205 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-21;142
20150202 104545.205 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104545.205 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200500

20150202 104545.205 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200818

20150202 104545.205 Calling messageArrived for client InFlight, queue depth 0
20150202 104545.205 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104545.205 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104545.205 (3067456320)       (6)> UTF8_validateString:155
20150202 104545.205 (3067456320)        (7)> UTF8_validate:129
20150202 104545.205 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.205 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.205 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.205 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.205 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.205 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.205 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.205 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.205 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.205 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.205 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.205 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.205 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.207 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.207 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.207 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.207 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.207 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104545.207 (3075849024)  (1)> Thread_wait_cond:402
20150202 104545.207 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.207 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.207 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.207 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.207 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.207 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.207 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.207 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.207 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.207 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.207 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.207 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.207 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.207 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.208 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.208 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.208 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.208 (3067456320)         (8)> UTF8_char_validate:79
20150202 104545.208 (3067456320)         (8)< UTF8_char_validate:113
20150202 104545.208 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104545.208 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104545.208 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62008a8

20150202 104545.208 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200550

20150202 104545.208 (3067456320)       (6)> MQTTStrncpy:736
20150202 104545.208 (3067456320)       (6)< MQTTStrncpy:746
20150202 104545.208 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200620

20150202 104545.208 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104545.208 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200600

20150202 104545.208 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104545.208 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104545.208 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104545.208 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104545.208 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104545.208 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104545.208 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104545.208 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104545.208 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104545.208 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104545.208 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104545.208 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104545.208 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104545.208 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104545.208 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104545.208 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104545.208 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104545.208 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104545.208 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104545.208 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104545.208 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104545.208 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104545.208 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104545.208 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104545.208 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104545.208 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104545.208 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104545.208 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104545.208 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104545.208 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104545.208 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104545.208 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104545.208 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104545.208 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104545.208 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104545.208 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104545.208 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104545.208 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104545.208 (3075849024)       (6)> Socket_putdatas:443
20150202 104545.208 (3075849024)        (7)> Socket_writev:399
20150202 104545.208 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104545.208 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104545.208 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104545.208 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104545.208 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104545.208 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104545.208 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104545.208 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104545.208 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104545.208 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104545.208 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104545.208 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104545.208 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104545.208 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104545.208 (3075849024)  (1)> Thread_wait_cond:402
20150202 104545.208 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104545.208 (3075849024)  (1)> Thread_wait_cond:402
20150202 104545.208 Return code 0 from read select
20150202 104545.208 (3067456320)    (3)> Socket_continueWrites:777
20150202 104545.208 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104545.208 Return code 1 from write select
20150202 104545.208 (3067456320)    (3)> isReady:192
20150202 104545.208 (3067456320)    (3)< isReady:197 (0)
20150202 104545.208 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104545.208 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104545.208 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104546.310 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104546.310 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104546.310 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104546.310 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104546.310 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104546.310 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104546.310 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104546.310 Return code 1 from read select
20150202 104546.310 (3067456320)    (3)> Socket_continueWrites:777
20150202 104546.310 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104546.310 Return code 1 from write select
20150202 104546.310 (3067456320)    (3)> isReady:192
20150202 104546.310 (3067456320)    (3)< isReady:197 (1)
20150202 104546.310 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104546.310 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104546.310 (3067456320)    (3)> Socket_getch:297
20150202 104546.310 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104546.310 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104546.310 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104546.310 queueChar: index is now 1, headerlen 1
20150202 104546.506 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104546.506 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104546.506 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104546.506 (3067456320)     (4)> Socket_getch:297
20150202 104546.506 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104546.506 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104546.506 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104546.506 queueChar: index is now 2, headerlen 2
20150202 104546.506 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104546.506 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104546.506 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104546.506 (3067456320)    (3)> Socket_getdata:336
20150202 104546.506 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104546.506 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104546.506 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104546.506 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104546.506 (3067456320)    (3)< Socket_getdata:370
20150202 104546.506 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200550

20150202 104546.506 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104546.506 (3067456320)     (4)> readUTFlen:352
20150202 104546.506 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62009d0

20150202 104546.506 (3067456320)     (4)< readUTFlen:364
20150202 104546.506 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104546.506 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104546.506 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104546.506 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-22;142
20150202 104546.506 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104546.506 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200498

20150202 104546.506 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a50

20150202 104546.506 Calling messageArrived for client InFlight, queue depth 0
20150202 104546.506 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104546.506 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104546.506 (3067456320)       (6)> UTF8_validateString:155
20150202 104546.506 (3067456320)        (7)> UTF8_validate:129
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.506 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.506 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.507 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.507 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.507 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.507 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.507 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.507 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.507 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.507 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.507 (3067456320)         (8)> UTF8_char_validate:79
20150202 104546.507 (3067456320)         (8)< UTF8_char_validate:113
20150202 104546.507 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104546.507 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104546.507 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200910

20150202 104546.507 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200500

20150202 104546.507 (3067456320)       (6)> MQTTStrncpy:736
20150202 104546.507 (3067456320)       (6)< MQTTStrncpy:746
20150202 104546.507 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b98

20150202 104546.507 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104546.507 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200aa0

20150202 104546.507 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104546.507 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104546.507 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104546.507 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104546.507 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1136 bytes

20150202 104546.507 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1072 bytes

20150202 104546.507 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104546.507 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104546.507 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1040 bytes

20150202 104546.507 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104546.507 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104546.507 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104546.507 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1008 bytes

20150202 104546.507 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104546.507 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104546.507 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104546.507 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104546.507 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104546.507 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104546.507 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104546.507 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104546.508 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104546.508 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104546.508 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104546.508 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104546.508 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104546.508 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104546.508 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1008 bytes

20150202 104546.508 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 976 bytes

20150202 104546.508 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104546.508 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104546.508 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104546.508 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104546.508 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104546.508 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104546.508 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104546.508 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104546.508 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104546.508 (3075849024)       (6)> Socket_putdatas:443
20150202 104546.508 (3075849024)        (7)> Socket_writev:399
20150202 104546.508 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104546.508 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104546.508 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1024 bytes

20150202 104546.508 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104546.508 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1008 bytes

20150202 104546.508 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104546.508 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104546.508 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104546.508 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104546.508 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 992 bytes

20150202 104546.508 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 960 bytes

20150202 104546.508 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 928 bytes

20150202 104546.508 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104546.508 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104546.508 (3075849024)  (1)> Thread_wait_cond:402
20150202 104546.508 Return code 1 from read select
20150202 104546.508 (3067456320)    (3)> Socket_continueWrites:777
20150202 104546.508 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104546.508 Return code 1 from write select
20150202 104546.508 (3067456320)    (3)> isReady:192
20150202 104546.508 (3067456320)    (3)< isReady:197 (1)
20150202 104547.208 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104547.208 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104547.208 (3067456320)    (3)> Socket_getch:297
20150202 104547.208 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104547.208 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104547.208 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104547.208 queueChar: index is now 1, headerlen 1
20150202 104547.208 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104547.208 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104547.208 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104547.208 (3067456320)     (4)> Socket_getch:297
20150202 104547.208 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104547.208 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104547.208 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104547.208 queueChar: index is now 2, headerlen 2
20150202 104547.208 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104547.208 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104547.208 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104547.208 (3067456320)    (3)> Socket_getdata:336
20150202 104547.208 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104547.208 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104547.208 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104547.208 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104547.208 (3067456320)    (3)< Socket_getdata:370
20150202 104547.208 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200480

20150202 104547.208 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104547.208 (3067456320)     (4)> readUTFlen:352
20150202 104547.208 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62007e8

20150202 104547.208 (3067456320)     (4)< readUTFlen:364
20150202 104547.208 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104547.208 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104547.208 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104547.208 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-23;142
20150202 104547.208 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104547.208 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200978

20150202 104547.208 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200888

20150202 104547.208 Calling messageArrived for client InFlight, queue depth 0
20150202 104547.208 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104547.208 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104547.208 (3067456320)       (6)> UTF8_validateString:155
20150202 104547.209 (3067456320)        (7)> UTF8_validate:129
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)         (8)> UTF8_char_validate:79
20150202 104547.209 (3067456320)         (8)< UTF8_char_validate:113
20150202 104547.209 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104547.209 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104547.209 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200500

20150202 104547.209 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005a8

20150202 104547.209 (3067456320)       (6)> MQTTStrncpy:736
20150202 104547.209 (3067456320)       (6)< MQTTStrncpy:746
20150202 104547.209 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200628

20150202 104547.209 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104547.209 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62006c8

20150202 104547.209 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104547.209 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104547.209 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104547.209 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104547.209 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104547.209 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104547.209 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104547.209 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104547.209 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104547.209 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104547.209 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104547.209 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104547.209 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104547.209 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104547.210 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104547.210 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104547.210 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104547.210 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104547.210 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104547.210 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104547.210 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104547.210 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104547.210 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104547.210 (3075849024)  (1)> Thread_wait_cond:402
20150202 104547.210 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104547.210 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104547.210 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104547.210 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104547.210 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104547.210 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104547.210 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104547.210 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104547.210 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104547.210 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104548.210 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104548.210 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104548.210 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104548.210 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104548.210 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104548.210 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104548.210 (3075849024)       (6)> Socket_putdatas:443
20150202 104548.210 (3075849024)        (7)> Socket_writev:399
20150202 104548.210 (3075849024)        (7)< Socket_writev:420 (81)
20150202 104548.210 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104548.210 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104548.210 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104548.210 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104548.210 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104548.210 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104548.210 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104548.210 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104548.210 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104548.210 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104548.210 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104548.211 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104548.211 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104548.211 (3075849024)  (1)> Thread_wait_cond:402
20150202 104548.211 Return code 1 from read select
20150202 104548.211 (3067456320)    (3)> Socket_continueWrites:777
20150202 104548.211 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104548.211 Return code 1 from write select
20150202 104548.211 (3067456320)    (3)> isReady:192
20150202 104548.211 (3067456320)    (3)< isReady:197 (1)
20150202 104548.211 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104548.211 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104548.211 (3067456320)    (3)> Socket_getch:297
20150202 104548.211 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104548.211 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104548.211 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104548.211 queueChar: index is now 1, headerlen 1
20150202 104548.211 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104548.211 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104548.211 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104548.211 (3067456320)     (4)> Socket_getch:297
20150202 104548.213 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104548.213 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104548.213 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104548.213 queueChar: index is now 2, headerlen 2
20150202 104548.213 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104548.213 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104548.213 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104548.213 (3067456320)    (3)> Socket_getdata:336
20150202 104548.213 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104548.213 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104548.213 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104548.213 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104548.213 (3067456320)    (3)< Socket_getdata:370
20150202 104548.213 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005a8

20150202 104548.213 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104548.213 (3067456320)     (4)> readUTFlen:352
20150202 104548.213 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200480

20150202 104548.213 (3067456320)     (4)< readUTFlen:364
20150202 104548.213 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104548.213 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104548.213 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104548.213 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-24;142
20150202 104548.213 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104548.213 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007e8

20150202 104548.213 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200888

20150202 104548.213 Calling messageArrived for client InFlight, queue depth 0
20150202 104548.213 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104548.213 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104548.213 (3067456320)       (6)> UTF8_validateString:155
20150202 104548.213 (3067456320)        (7)> UTF8_validate:129
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104548.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104548.213 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104548.213 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104548.213 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200628

20150202 104548.213 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200978

20150202 104548.213 (3067456320)       (6)> MQTTStrncpy:736
20150202 104548.213 (3067456320)       (6)< MQTTStrncpy:746
20150202 104548.213 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200500

20150202 104548.213 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104548.213 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62007c8

20150202 104548.213 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104548.213 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104548.213 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104548.213 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104548.213 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104548.214 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104548.214 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104548.214 (3075849024)  (1)> Thread_wait_cond:402
20150202 104548.214 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104548.214 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104548.214 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104548.214 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104548.214 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104548.214 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104548.214 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104548.214 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104548.214 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104548.214 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104548.214 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104548.214 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104548.214 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104548.214 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104548.214 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104548.214 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104548.214 Return code 1 from read select
20150202 104549.213 (3067456320)    (3)> Socket_continueWrites:777
20150202 104549.213 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104549.213 Return code 1 from write select
20150202 104549.213 (3067456320)    (3)> isReady:192
20150202 104549.213 (3067456320)    (3)< isReady:197 (1)
20150202 104549.213 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104549.213 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104549.213 (3067456320)    (3)> Socket_getch:297
20150202 104549.213 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104549.213 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104549.213 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104549.213 queueChar: index is now 1, headerlen 1
20150202 104549.213 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104549.213 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104549.213 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104549.213 (3067456320)     (4)> Socket_getch:297
20150202 104549.213 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104549.213 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104549.213 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104549.213 queueChar: index is now 2, headerlen 2
20150202 104549.213 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104549.213 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104549.213 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104549.213 (3067456320)    (3)> Socket_getdata:336
20150202 104549.213 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104549.213 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104549.213 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104549.213 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104549.213 (3067456320)    (3)< Socket_getdata:370
20150202 104549.213 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005a8

20150202 104549.213 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104549.213 (3067456320)     (4)> readUTFlen:352
20150202 104549.213 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200480

20150202 104549.213 (3067456320)     (4)< readUTFlen:364
20150202 104549.213 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104549.213 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104549.213 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104549.213 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-25;142
20150202 104549.213 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104549.213 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007e8

20150202 104549.213 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200888

20150202 104549.213 Calling messageArrived for client InFlight, queue depth 0
20150202 104549.213 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104549.213 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104549.213 (3067456320)       (6)> UTF8_validateString:155
20150202 104549.213 (3067456320)        (7)> UTF8_validate:129
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)         (8)> UTF8_char_validate:79
20150202 104549.213 (3067456320)         (8)< UTF8_char_validate:113
20150202 104549.213 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104549.213 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104549.213 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200708

20150202 104549.213 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62009f8

20150202 104549.213 (3067456320)       (6)> MQTTStrncpy:736
20150202 104549.213 (3067456320)       (6)< MQTTStrncpy:746
20150202 104549.213 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a88

20150202 104549.213 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104549.213 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b28

20150202 104549.213 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104549.213 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104549.213 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104549.213 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104549.213 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104549.213 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104549.213 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104549.213 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104549.213 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104549.214 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104549.214 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104549.214 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104549.214 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104549.214 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104549.214 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104549.214 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104549.214 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104549.214 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104549.214 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104549.214 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104549.214 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104549.214 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104549.214 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104549.214 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104549.214 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104549.214 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104549.214 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104549.214 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104549.214 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104549.214 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104549.214 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104549.214 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104549.214 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104549.214 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104549.214 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104549.214 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104549.214 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104549.214 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104549.214 (3075849024)       (6)> Socket_putdatas:443
20150202 104549.214 (3075849024)        (7)> Socket_writev:399
20150202 104549.214 (3075849024)        (7)< Socket_writev:420 (81)
20150202 104549.214 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104549.214 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104549.214 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104549.214 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104549.214 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104549.214 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104549.214 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104549.214 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104549.214 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104549.214 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104549.214 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104549.214 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104549.214 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104549.214 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104549.214 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104549.214 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104549.214 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104549.214 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104549.214 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104549.214 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104549.214 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104549.214 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104549.214 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104549.214 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104549.214 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104549.214 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104549.214 (3075849024)       (6)> Socket_putdatas:443
20150202 104549.214 (3075849024)        (7)> Socket_writev:399
20150202 104549.214 (3075849024)        (7)< Socket_writev:420 (81)
20150202 104549.214 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104549.214 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104549.214 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104549.214 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104549.214 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104549.214 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104549.214 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104549.214 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104549.214 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104549.214 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104549.214 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104549.214 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104549.214 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104549.214 (3075849024)  (1)> Thread_wait_cond:402
20150202 104549.214 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104549.214 (3075849024)  (1)> Thread_wait_cond:402
20150202 104549.214 Return code 0 from read select
20150202 104549.214 (3067456320)    (3)> Socket_continueWrites:777
20150202 104549.214 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104550.215 Return code 1 from write select
20150202 104550.215 (3067456320)    (3)> isReady:192
20150202 104550.215 (3067456320)    (3)< isReady:197 (0)
20150202 104550.215 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104550.215 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104550.215 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104550.215 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104550.215 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104550.215 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104550.215 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104550.215 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104550.215 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104550.215 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104550.215 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104550.215 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104550.215 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104550.215 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104550.215 Return code 1 from read select
20150202 104550.215 (3067456320)    (3)> Socket_continueWrites:777
20150202 104550.215 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104550.316 Return code 1 from write select
20150202 104550.316 (3067456320)    (3)> isReady:192
20150202 104550.316 (3067456320)    (3)< isReady:197 (1)
20150202 104550.316 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104550.316 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104550.316 (3067456320)    (3)> Socket_getch:297
20150202 104550.316 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104550.316 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104550.316 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104550.316 queueChar: index is now 1, headerlen 1
20150202 104550.316 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104550.316 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104550.316 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104550.316 (3067456320)     (4)> Socket_getch:297
20150202 104550.316 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104550.316 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104550.316 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104550.316 queueChar: index is now 2, headerlen 2
20150202 104550.316 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104550.316 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104550.316 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104550.316 (3067456320)    (3)> Socket_getdata:336
20150202 104550.316 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104550.316 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104550.316 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104550.316 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104550.316 (3067456320)    (3)< Socket_getdata:370
20150202 104550.316 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62009f8

20150202 104550.316 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104550.316 (3067456320)     (4)> readUTFlen:352
20150202 104550.316 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200978

20150202 104550.316 (3067456320)     (4)< readUTFlen:364
20150202 104550.316 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104550.316 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104550.316 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104550.316 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-26;142
20150202 104550.316 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104550.316 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005a8

20150202 104550.316 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200888

20150202 104550.316 Calling messageArrived for client InFlight, queue depth 0
20150202 104550.316 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104550.316 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104550.316 (3067456320)       (6)> UTF8_validateString:155
20150202 104550.316 (3067456320)        (7)> UTF8_validate:129
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.316 (3067456320)         (8)> UTF8_char_validate:79
20150202 104550.316 (3067456320)         (8)< UTF8_char_validate:113
20150202 104550.317 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104550.317 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104550.317 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200500

20150202 104550.317 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200480

20150202 104550.317 (3067456320)       (6)> MQTTStrncpy:736
20150202 104550.317 (3067456320)       (6)< MQTTStrncpy:746
20150202 104550.317 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200628

20150202 104550.317 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104550.317 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62006c8

20150202 104550.317 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104550.317 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104550.317 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104550.317 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104550.317 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104550.317 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104550.317 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104550.317 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104550.317 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104550.317 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104550.317 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104550.317 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104550.317 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104550.317 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104550.317 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104550.317 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104550.317 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104550.317 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104550.317 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104550.317 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104550.317 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104550.317 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104550.317 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104550.317 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104550.317 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104550.317 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104550.317 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104550.317 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104550.317 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104550.317 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104550.317 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104550.317 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104550.317 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104550.317 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104550.317 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104550.317 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104550.317 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104550.317 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104550.317 (3075849024)       (6)> Socket_putdatas:443
20150202 104550.317 (3075849024)        (7)> Socket_writev:399
20150202 104550.317 (3075849024)        (7)< Socket_writev:420 (81)
20150202 104550.317 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104550.317 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104550.317 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104550.317 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104550.317 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104550.317 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104550.317 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104550.317 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104550.317 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104550.317 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104550.317 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104550.317 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104550.317 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104550.317 (3075849024)  (1)> Thread_wait_cond:402
20150202 104550.317 Return code 1 from read select
20150202 104550.317 (3067456320)    (3)> Socket_continueWrites:777
20150202 104550.317 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104550.317 Return code 1 from write select
20150202 104550.317 (3067456320)    (3)> isReady:192
20150202 104550.317 (3067456320)    (3)< isReady:197 (1)
20150202 104550.317 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104550.317 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104550.317 (3067456320)    (3)> Socket_getch:297
20150202 104550.317 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104550.317 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104550.317 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104550.317 queueChar: index is now 1, headerlen 1
20150202 104550.317 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104550.317 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104550.317 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104551.215 (3067456320)     (4)> Socket_getch:297
20150202 104551.215 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104551.215 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104551.215 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104551.215 queueChar: index is now 2, headerlen 2
20150202 104551.215 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104551.215 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104551.215 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104551.215 (3067456320)    (3)> Socket_getdata:336
20150202 104551.215 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104551.215 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104551.215 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104551.215 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104551.215 (3067456320)    (3)< Socket_getdata:370
20150202 104551.215 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200480

20150202 104551.215 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104551.215 (3067456320)     (4)> readUTFlen:352
20150202 104551.215 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62009f8

20150202 104551.215 (3067456320)     (4)< readUTFlen:364
20150202 104551.215 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104551.215 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104551.215 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104551.215 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-27;142
20150202 104551.215 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104551.215 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200978

20150202 104551.215 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a88

20150202 104551.215 Calling messageArrived for client InFlight, queue depth 0
20150202 104551.215 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104551.215 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104551.215 (3067456320)       (6)> UTF8_validateString:155
20150202 104551.215 (3067456320)        (7)> UTF8_validate:129
20150202 104551.215 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.215 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.215 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.215 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.215 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.215 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.215 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.215 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.215 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)         (8)> UTF8_char_validate:79
20150202 104551.216 (3067456320)         (8)< UTF8_char_validate:113
20150202 104551.216 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104551.216 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104551.216 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200708

20150202 104551.216 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005a8

20150202 104551.216 (3067456320)       (6)> MQTTStrncpy:736
20150202 104551.216 (3067456320)       (6)< MQTTStrncpy:746
20150202 104551.216 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200888

20150202 104551.216 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104551.216 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200758

20150202 104551.216 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104551.216 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104551.216 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104551.216 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104551.216 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104551.216 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104551.216 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104551.216 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104551.216 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104551.216 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104551.216 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104551.216 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104551.216 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104551.216 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104551.216 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104551.216 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104551.216 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104551.216 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104551.216 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104551.216 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104551.216 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104551.216 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104551.216 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104551.216 (3075849024)  (1)> Thread_wait_cond:402
20150202 104552.217 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104552.217 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104552.217 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104552.217 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104552.217 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104552.217 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104552.217 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104552.217 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104552.217 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104552.217 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104552.217 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104552.217 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104552.217 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104552.217 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104552.217 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104552.217 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104552.217 (3075849024)       (6)> Socket_putdatas:443
20150202 104552.217 (3075849024)        (7)> Socket_writev:399
20150202 104552.217 Return code 0 from read select
20150202 104552.217 (3075849024)        (7)< Socket_writev:420 (82)
20150202 104552.218 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104552.218 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104552.218 (3067456320)    (3)> Socket_continueWrites:777
20150202 104552.218 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104552.218 Return code 1 from write select
20150202 104552.218 (3067456320)    (3)> isReady:192
20150202 104552.218 (3067456320)    (3)< isReady:197 (0)
20150202 104552.218 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104552.218 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104552.218 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104552.218 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104552.218 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104552.218 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104552.218 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104552.218 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104552.218 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104552.218 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104552.218 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104552.218 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104552.218 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104552.218 (3075849024)  (1)> Thread_wait_cond:402
20150202 104552.218 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104552.218 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104552.218 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104552.218 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104552.218 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104552.218 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104552.218 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104552.218 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104552.218 Return code 1 from read select
20150202 104552.218 (3067456320)    (3)> Socket_continueWrites:777
20150202 104552.218 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104552.218 Return code 1 from write select
20150202 104552.218 (3067456320)    (3)> isReady:192
20150202 104552.218 (3067456320)    (3)< isReady:197 (1)
20150202 104552.218 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104552.218 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104552.218 (3067456320)    (3)> Socket_getch:297
20150202 104552.218 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104552.218 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104552.318 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104552.318 queueChar: index is now 1, headerlen 1
20150202 104552.318 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104552.318 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104552.318 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104552.318 (3067456320)     (4)> Socket_getch:297
20150202 104552.318 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104552.318 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104552.318 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104552.318 queueChar: index is now 2, headerlen 2
20150202 104552.318 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104552.318 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104552.318 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104552.318 (3067456320)    (3)> Socket_getdata:336
20150202 104552.318 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104552.318 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104552.318 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104552.318 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104552.318 (3067456320)    (3)< Socket_getdata:370
20150202 104552.318 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005a8

20150202 104552.319 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104552.319 (3067456320)     (4)> readUTFlen:352
20150202 104552.319 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200480

20150202 104552.319 (3067456320)     (4)< readUTFlen:364
20150202 104552.319 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104552.319 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104552.319 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104552.319 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-28;142
20150202 104552.319 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104552.319 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62009f8

20150202 104552.319 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200628

20150202 104552.319 Calling messageArrived for client InFlight, queue depth 0
20150202 104552.319 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104552.319 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104552.319 (3067456320)       (6)> UTF8_validateString:155
20150202 104552.319 (3067456320)        (7)> UTF8_validate:129
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)         (8)> UTF8_char_validate:79
20150202 104552.319 (3067456320)         (8)< UTF8_char_validate:113
20150202 104552.319 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104552.319 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104552.319 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200500

20150202 104552.319 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200978

20150202 104552.319 (3067456320)       (6)> MQTTStrncpy:736
20150202 104552.319 (3067456320)       (6)< MQTTStrncpy:746
20150202 104552.319 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a88

20150202 104552.319 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104552.319 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200790

20150202 104552.319 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104552.319 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104552.319 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104552.319 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104552.319 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104552.319 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104552.319 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104552.319 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104552.319 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104552.319 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104552.319 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104552.319 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104552.319 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104552.319 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104552.319 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104552.319 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104552.319 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104552.319 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104552.319 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104552.319 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104552.319 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104552.319 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104552.319 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104552.319 (3075849024)  (1)> Thread_wait_cond:402
20150202 104552.319 Return code 1 from read select
20150202 104552.319 (3067456320)    (3)> Socket_continueWrites:777
20150202 104552.319 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104552.319 Return code 1 from write select
20150202 104552.319 (3067456320)    (3)> isReady:192
20150202 104552.319 (3067456320)    (3)< isReady:197 (1)
20150202 104552.319 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104552.319 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104552.319 (3067456320)    (3)> Socket_getch:297
20150202 104552.319 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104552.319 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104552.319 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104552.319 queueChar: index is now 1, headerlen 1
20150202 104552.319 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104552.319 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104553.220 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104553.220 (3067456320)     (4)> Socket_getch:297
20150202 104553.220 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104553.220 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104553.220 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104553.220 queueChar: index is now 2, headerlen 2
20150202 104553.220 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104553.220 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104553.220 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104553.220 (3067456320)    (3)> Socket_getdata:336
20150202 104553.220 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104553.220 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104553.220 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104553.220 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104553.220 (3067456320)    (3)< Socket_getdata:370
20150202 104553.220 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005a8

20150202 104553.220 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104553.220 (3067456320)     (4)> readUTFlen:352
20150202 104553.220 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200480

20150202 104553.220 (3067456320)     (4)< readUTFlen:364
20150202 104553.220 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104553.220 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104553.220 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104553.220 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-29;142
20150202 104553.220 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104553.220 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62009f8

20150202 104553.220 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200888

20150202 104553.220 Calling messageArrived for client InFlight, queue depth 0
20150202 104553.220 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104553.220 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104553.220 (3067456320)       (6)> UTF8_validateString:155
20150202 104553.220 (3067456320)        (7)> UTF8_validate:129
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.220 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.220 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.221 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.221 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.221 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.221 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.221 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.221 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.221 (3067456320)         (8)> UTF8_char_validate:79
20150202 104553.221 (3067456320)         (8)< UTF8_char_validate:113
20150202 104553.221 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104553.221 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104553.221 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200708

20150202 104553.221 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62007e8

20150202 104553.221 (3067456320)       (6)> MQTTStrncpy:736
20150202 104553.221 (3067456320)       (6)< MQTTStrncpy:746
20150202 104553.221 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b68

20150202 104553.221 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104553.221 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200818

20150202 104553.221 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104553.221 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104553.221 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104553.221 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104553.221 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1312 bytes

20150202 104553.221 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1248 bytes

20150202 104553.221 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104553.221 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104553.221 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1216 bytes

20150202 104553.221 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104553.221 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104553.221 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104553.221 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1184 bytes

20150202 104553.221 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104553.221 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104553.221 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104553.221 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104553.221 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104553.221 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104553.221 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104553.221 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104553.221 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104553.221 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104553.222 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104553.222 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104553.222 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104553.222 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1184 bytes

20150202 104553.222 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1152 bytes

20150202 104553.222 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104553.222 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104553.222 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104553.222 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104553.222 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104553.222 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104553.222 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104553.222 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104553.222 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104553.222 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104553.222 (3075849024)       (6)> Socket_putdatas:443
20150202 104553.222 (3075849024)        (7)> Socket_writev:399
20150202 104553.222 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104553.222 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104553.222 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1200 bytes

20150202 104553.222 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104553.222 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1184 bytes

20150202 104553.222 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104553.222 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104553.222 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104553.222 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104553.222 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1168 bytes

20150202 104553.222 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1136 bytes

20150202 104553.222 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1104 bytes

20150202 104553.222 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1040 bytes

20150202 104553.222 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104553.222 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104553.222 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104553.222 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1008 bytes

20150202 104553.222 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 976 bytes

20150202 104553.222 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104553.222 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104553.222 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104553.222 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104553.222 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104553.223 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104553.223 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104553.223 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104553.223 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104553.223 (3075849024)       (6)> Socket_putdatas:443
20150202 104553.223 (3075849024)        (7)> Socket_writev:399
20150202 104553.223 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104553.223 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104553.223 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1024 bytes

20150202 104553.223 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104553.223 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1008 bytes

20150202 104553.223 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104553.223 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104553.223 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104553.223 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104553.223 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 992 bytes

20150202 104553.223 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 960 bytes

20150202 104553.223 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 928 bytes

20150202 104553.223 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104553.223 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104553.223 (3075849024)  (1)> Thread_wait_cond:402
20150202 104553.223 Return code 1 from read select
20150202 104553.223 (3067456320)    (3)> Socket_continueWrites:777
20150202 104553.223 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104553.223 Return code 1 from write select
20150202 104553.223 (3067456320)    (3)> isReady:192
20150202 104553.223 (3067456320)    (3)< isReady:197 (1)
20150202 104553.223 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104553.223 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104553.223 (3067456320)    (3)> Socket_getch:297
20150202 104553.223 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104553.223 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104553.223 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104553.223 queueChar: index is now 1, headerlen 1
20150202 104553.223 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104553.223 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104553.223 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104553.223 (3067456320)     (4)> Socket_getch:297
20150202 104553.223 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104553.223 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104554.223 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104554.223 queueChar: index is now 2, headerlen 2
20150202 104554.223 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104554.223 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104554.223 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104554.223 (3067456320)    (3)> Socket_getdata:336
20150202 104554.223 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104554.223 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104554.223 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104554.223 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104554.223 (3067456320)    (3)< Socket_getdata:370
20150202 104554.223 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200518

20150202 104554.223 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104554.223 (3067456320)     (4)> readUTFlen:352
20150202 104554.223 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200498

20150202 104554.223 (3067456320)     (4)< readUTFlen:364
20150202 104554.223 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104554.223 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104554.223 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104554.223 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-30;142
20150202 104554.223 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104554.223 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005c0

20150202 104554.223 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200658

20150202 104554.223 Calling messageArrived for client InFlight, queue depth 0
20150202 104554.223 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104554.223 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104554.223 (3067456320)       (6)> UTF8_validateString:155
20150202 104554.223 (3067456320)        (7)> UTF8_validate:129
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)         (8)> UTF8_char_validate:79
20150202 104554.223 (3067456320)         (8)< UTF8_char_validate:113
20150202 104554.223 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104554.223 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104554.223 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62006f8

20150202 104554.223 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62007a0

20150202 104554.223 (3067456320)       (6)> MQTTStrncpy:736
20150202 104554.223 (3067456320)       (6)< MQTTStrncpy:746
20150202 104554.223 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200820

20150202 104554.223 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104554.223 (3075849024)  (1)> Thread_wait_cond:402
20150202 104554.223 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104554.223 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62008c0

20150202 104554.223 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104554.223 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104554.223 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104554.223 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104554.223 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104554.224 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104554.224 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104554.224 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104554.224 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104554.224 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104554.224 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104554.224 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104554.224 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104554.224 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104554.224 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104554.224 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104554.224 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104554.224 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104554.224 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104554.224 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104554.224 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104554.224 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104554.224 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104554.224 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104554.224 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104554.225 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104554.225 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104554.225 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104554.225 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104554.225 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104554.225 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104554.225 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104554.225 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104554.225 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104554.225 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104554.225 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104554.225 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104554.225 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104554.225 (3075849024)       (6)> Socket_putdatas:443
20150202 104554.225 (3075849024)        (7)> Socket_writev:399
20150202 104554.225 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104554.225 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104554.225 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104554.225 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104554.225 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104554.225 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104554.225 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104554.225 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104554.225 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104554.225 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104554.225 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104554.225 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104554.225 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104554.225 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104554.225 (3075849024)  (1)> Thread_wait_cond:402
20150202 104554.225 Return code 1 from read select
20150202 104554.225 (3067456320)    (3)> Socket_continueWrites:777
20150202 104554.225 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104554.225 Return code 1 from write select
20150202 104554.225 (3067456320)    (3)> isReady:192
20150202 104554.225 (3067456320)    (3)< isReady:197 (1)
20150202 104554.225 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104554.225 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104554.225 (3067456320)    (3)> Socket_getch:297
20150202 104554.225 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104555.224 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104555.224 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104555.224 queueChar: index is now 1, headerlen 1
20150202 104555.224 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104555.224 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104555.224 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104555.224 (3067456320)     (4)> Socket_getch:297
20150202 104555.224 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104555.224 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104555.224 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104555.224 queueChar: index is now 2, headerlen 2
20150202 104555.224 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104555.224 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104555.224 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104555.224 (3067456320)    (3)> Socket_getdata:336
20150202 104555.224 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104555.224 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104555.224 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104555.224 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104555.224 (3067456320)    (3)< Socket_getdata:370
20150202 104555.224 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62007a0

20150202 104555.224 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104555.224 (3067456320)     (4)> readUTFlen:352
20150202 104555.224 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200498

20150202 104555.224 (3067456320)     (4)< readUTFlen:364
20150202 104555.224 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104555.224 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104555.224 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104555.224 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-31;142
20150202 104555.224 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104555.224 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005c0

20150202 104555.224 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200658

20150202 104555.224 Calling messageArrived for client InFlight, queue depth 0
20150202 104555.224 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104555.224 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104555.224 (3067456320)       (6)> UTF8_validateString:155
20150202 104555.224 (3067456320)        (7)> UTF8_validate:129
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.224 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.224 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.225 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.225 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.225 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.225 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.225 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.225 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.225 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.225 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.225 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.225 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.225 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.225 (3067456320)         (8)> UTF8_char_validate:79
20150202 104555.225 (3067456320)         (8)< UTF8_char_validate:113
20150202 104555.225 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104555.225 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104555.225 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200820

20150202 104555.225 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62006f8

20150202 104555.225 (3067456320)       (6)> MQTTStrncpy:736
20150202 104555.225 (3067456320)       (6)< MQTTStrncpy:746
20150202 104555.225 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200900

20150202 104555.225 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104555.225 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62005f0

20150202 104555.225 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104555.225 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104555.225 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104555.225 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104555.225 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104555.225 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104555.225 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104555.225 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104555.225 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104555.225 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104555.225 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104555.225 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104555.225 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104555.225 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104555.225 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104555.225 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104555.225 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104555.225 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104555.225 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104555.225 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104555.225 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104555.225 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104555.225 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104555.225 (3075849024)  (1)> Thread_wait_cond:402
20150202 104555.225 Return code 0 from read select
20150202 104555.225 (3067456320)    (3)> Socket_continueWrites:777
20150202 104555.225 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104555.225 Return code 1 from write select
20150202 104555.225 (3067456320)    (3)> isReady:192
20150202 104555.225 (3067456320)    (3)< isReady:197 (0)
20150202 104555.225 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104555.225 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104555.225 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104555.225 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104555.225 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104555.225 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104555.225 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104555.225 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104556.226 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104556.226 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104556.226 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104556.226 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104556.226 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104556.226 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104556.226 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104556.226 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104556.226 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104556.226 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104556.226 (3075849024)       (6)> Socket_putdatas:443
20150202 104556.226 (3075849024)        (7)> Socket_writev:399
20150202 104556.226 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104556.226 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104556.226 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104556.226 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104556.226 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104556.226 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104556.226 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104556.226 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104556.226 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104556.226 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104556.226 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104556.226 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104556.226 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104556.226 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104556.226 (3075849024)  (1)> Thread_wait_cond:402
20150202 104556.226 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104556.226 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104556.226 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104556.226 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104556.226 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104556.226 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104556.226 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104556.226 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104556.226 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104556.226 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104556.226 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104556.226 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104556.226 Return code 1 from read select
20150202 104556.562 (3067456320)    (3)> Socket_continueWrites:777
20150202 104556.562 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104556.562 Return code 1 from write select
20150202 104556.562 (3067456320)    (3)> isReady:192
20150202 104556.562 (3067456320)    (3)< isReady:197 (1)
20150202 104556.562 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104556.562 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104556.562 (3067456320)    (3)> Socket_getch:297
20150202 104556.562 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104556.562 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104556.562 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104556.562 queueChar: index is now 1, headerlen 1
20150202 104556.562 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104556.562 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104556.562 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104556.562 (3067456320)     (4)> Socket_getch:297
20150202 104556.562 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104556.562 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104556.562 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104556.562 queueChar: index is now 2, headerlen 2
20150202 104556.562 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104556.562 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104556.562 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104556.562 (3067456320)    (3)> Socket_getdata:336
20150202 104556.562 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104556.562 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104556.562 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104556.562 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104556.562 (3067456320)    (3)< Socket_getdata:370
20150202 104556.562 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62006f8

20150202 104556.562 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104556.562 (3067456320)     (4)> readUTFlen:352
20150202 104556.562 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62007a0

20150202 104556.562 (3067456320)     (4)< readUTFlen:364
20150202 104556.562 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104556.562 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104556.562 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104556.562 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-32;142
20150202 104556.562 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104556.562 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200498

20150202 104556.562 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200658

20150202 104556.562 Calling messageArrived for client InFlight, queue depth 0
20150202 104556.562 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104556.562 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104556.562 (3067456320)       (6)> UTF8_validateString:155
20150202 104556.562 (3067456320)        (7)> UTF8_validate:129
20150202 104556.562 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.562 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.562 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.562 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.562 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.562 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.562 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.562 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.562 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.562 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.562 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.562 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.562 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.562 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)         (8)> UTF8_char_validate:79
20150202 104556.563 (3067456320)         (8)< UTF8_char_validate:113
20150202 104556.563 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104556.563 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104556.563 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200820

20150202 104556.563 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005c0

20150202 104556.563 (3067456320)       (6)> MQTTStrncpy:736
20150202 104556.563 (3067456320)       (6)< MQTTStrncpy:746
20150202 104556.563 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200900

20150202 104556.563 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104556.563 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62007d0

20150202 104556.563 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104556.563 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104556.563 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104556.563 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104556.563 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104556.563 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104556.563 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104556.563 (3075849024)  (1)> Thread_wait_cond:402
20150202 104556.563 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104556.564 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104556.564 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104556.564 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104556.564 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104556.564 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104556.564 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104556.564 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104556.564 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104556.564 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104556.564 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104556.564 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104556.564 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104556.564 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104556.564 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104556.564 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104556.564 Return code 1 from read select
20150202 104556.564 (3067456320)    (3)> Socket_continueWrites:777
20150202 104556.564 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104556.564 Return code 1 from write select
20150202 104556.564 (3067456320)    (3)> isReady:192
20150202 104557.229 (3067456320)    (3)< isReady:197 (1)
20150202 104557.229 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104557.229 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104557.229 (3067456320)    (3)> Socket_getch:297
20150202 104557.229 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104557.229 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104557.229 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104557.229 queueChar: index is now 1, headerlen 1
20150202 104557.229 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104557.229 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104557.229 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104557.229 (3067456320)     (4)> Socket_getch:297
20150202 104557.229 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104557.229 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104557.229 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104557.229 queueChar: index is now 2, headerlen 2
20150202 104557.229 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104557.229 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104557.229 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104557.229 (3067456320)    (3)> Socket_getdata:336
20150202 104557.229 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104557.229 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104557.229 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104557.229 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104557.229 (3067456320)    (3)< Socket_getdata:370
20150202 104557.229 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62006f8

20150202 104557.229 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104557.229 (3067456320)     (4)> readUTFlen:352
20150202 104557.229 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62007a0

20150202 104557.229 (3067456320)     (4)< readUTFlen:364
20150202 104557.229 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104557.229 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104557.229 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104557.229 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-33;142
20150202 104557.229 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104557.229 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200498

20150202 104557.229 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200658

20150202 104557.229 Calling messageArrived for client InFlight, queue depth 0
20150202 104557.229 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104557.229 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104557.230 (3067456320)       (6)> UTF8_validateString:155
20150202 104557.230 (3067456320)        (7)> UTF8_validate:129
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104557.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104557.230 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104557.230 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104557.230 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200968

20150202 104557.230 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200a10

20150202 104557.230 (3067456320)       (6)> MQTTStrncpy:736
20150202 104557.230 (3067456320)       (6)< MQTTStrncpy:746
20150202 104557.230 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a90

20150202 104557.230 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104557.230 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b68

20150202 104557.230 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104557.230 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104557.230 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104557.230 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104557.230 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104557.230 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104557.230 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104557.230 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104557.230 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104557.230 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104557.230 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104557.230 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104557.230 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104557.231 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104557.231 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104557.231 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104557.231 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104557.231 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104557.231 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104557.231 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104557.231 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104557.231 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104557.231 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104557.231 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104557.231 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104557.231 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104557.231 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104557.231 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104557.231 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104557.231 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104557.231 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104557.231 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104557.231 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104557.231 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104557.231 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104557.231 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104557.231 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104557.231 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104557.231 (3075849024)       (6)> Socket_putdatas:443
20150202 104557.231 (3075849024)        (7)> Socket_writev:399
20150202 104557.231 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104557.231 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104557.231 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104557.231 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104557.231 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104557.231 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104557.231 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104557.231 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104557.231 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104557.231 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104557.231 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104557.231 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104557.231 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104557.232 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104557.232 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104557.232 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104557.232 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104557.232 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104557.232 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104557.232 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104557.232 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104557.232 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104557.232 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104557.232 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104557.232 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104557.232 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104557.232 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104557.232 (3075849024)       (6)> Socket_putdatas:443
20150202 104557.232 (3075849024)        (7)> Socket_writev:399
20150202 104557.232 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104557.232 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104557.232 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104557.232 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104557.232 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104557.232 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104557.232 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104557.232 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104557.232 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104557.232 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104557.232 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104557.232 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104557.232 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104557.232 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104557.232 (3075849024)  (1)> Thread_wait_cond:402
20150202 104557.232 Return code 1 from read select
20150202 104557.232 (3067456320)    (3)> Socket_continueWrites:777
20150202 104557.232 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104557.232 Return code 1 from write select
20150202 104557.232 (3067456320)    (3)> isReady:192
20150202 104557.232 (3067456320)    (3)< isReady:197 (1)
20150202 104557.232 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104557.232 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104557.232 (3067456320)    (3)> Socket_getch:297
20150202 104558.229 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104558.229 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104558.229 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104558.229 queueChar: index is now 1, headerlen 1
20150202 104558.229 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104558.229 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104558.229 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104558.229 (3067456320)     (4)> Socket_getch:297
20150202 104558.229 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104558.229 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104558.229 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104558.229 queueChar: index is now 2, headerlen 2
20150202 104558.229 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104558.229 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104558.229 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104558.229 (3067456320)    (3)> Socket_getdata:336
20150202 104558.229 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104558.229 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104558.229 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104558.229 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104558.230 (3067456320)    (3)< Socket_getdata:370
20150202 104558.230 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a10

20150202 104558.230 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104558.230 (3067456320)     (4)> readUTFlen:352
20150202 104558.230 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005c0

20150202 104558.230 (3067456320)     (4)< readUTFlen:364
20150202 104558.230 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104558.230 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104558.230 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104558.230 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-34;142
20150202 104558.230 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104558.230 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62006f8

20150202 104558.230 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200658

20150202 104558.230 Calling messageArrived for client InFlight, queue depth 0
20150202 104558.230 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104558.230 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104558.230 (3067456320)       (6)> UTF8_validateString:155
20150202 104558.230 (3067456320)        (7)> UTF8_validate:129
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)         (8)> UTF8_char_validate:79
20150202 104558.230 (3067456320)         (8)< UTF8_char_validate:113
20150202 104558.230 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104558.230 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104558.230 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200900

20150202 104558.230 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62007a0

20150202 104558.230 (3067456320)       (6)> MQTTStrncpy:736
20150202 104558.230 (3067456320)       (6)< MQTTStrncpy:746
20150202 104558.231 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200820

20150202 104558.231 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104558.231 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62006a8

20150202 104558.231 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104558.231 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104558.231 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104558.231 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104558.231 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104558.231 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104558.231 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104558.231 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104558.231 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104558.231 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104558.231 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104558.231 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104558.231 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104558.231 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104558.231 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104558.231 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104558.231 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104558.231 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104558.231 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104558.231 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104558.231 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104558.231 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104558.231 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104558.231 (3075849024)  (1)> Thread_wait_cond:402
20150202 104558.231 Return code 1 from read select
20150202 104558.231 (3067456320)    (3)> Socket_continueWrites:777
20150202 104558.231 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104558.231 Return code 1 from write select
20150202 104558.231 (3067456320)    (3)> isReady:192
20150202 104558.231 (3067456320)    (3)< isReady:197 (1)
20150202 104558.231 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104558.231 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104558.231 (3067456320)    (3)> Socket_getch:297
20150202 104558.231 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104558.231 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104558.231 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104558.231 queueChar: index is now 1, headerlen 1
20150202 104559.231 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104559.231 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104559.231 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104559.231 (3067456320)     (4)> Socket_getch:297
20150202 104559.231 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104559.231 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104559.231 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104559.231 queueChar: index is now 2, headerlen 2
20150202 104559.231 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104559.231 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104559.231 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104559.231 (3067456320)    (3)> Socket_getdata:336
20150202 104559.231 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104559.231 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104559.231 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104559.231 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104559.231 (3067456320)    (3)< Socket_getdata:370
20150202 104559.231 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a10

20150202 104559.231 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104559.231 (3067456320)     (4)> readUTFlen:352
20150202 104559.231 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005c0

20150202 104559.231 (3067456320)     (4)< readUTFlen:364
20150202 104559.231 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104559.231 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104559.231 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104559.231 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-35;142
20150202 104559.231 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104559.231 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62006f8

20150202 104559.231 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104559.231 Calling messageArrived for client InFlight, queue depth 0
20150202 104559.231 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104559.231 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104559.231 (3067456320)       (6)> UTF8_validateString:155
20150202 104559.231 (3067456320)        (7)> UTF8_validate:129
20150202 104559.231 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.231 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.231 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.231 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.231 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.231 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)         (8)> UTF8_char_validate:79
20150202 104559.232 (3067456320)         (8)< UTF8_char_validate:113
20150202 104559.232 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104559.232 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104559.232 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200968

20150202 104559.232 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200498

20150202 104559.232 (3067456320)       (6)> MQTTStrncpy:736
20150202 104559.232 (3067456320)       (6)< MQTTStrncpy:746
20150202 104559.232 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200658

20150202 104559.232 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104559.232 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b48

20150202 104559.232 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104559.232 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104559.232 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104559.232 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104559.232 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104559.232 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104559.232 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104559.232 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104559.232 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104559.232 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104559.232 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104559.232 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104559.232 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104559.232 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104559.232 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104559.232 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104559.232 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104559.232 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104559.232 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104559.232 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104559.232 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104559.232 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104559.232 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104559.232 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104559.232 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104559.232 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104559.232 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104559.232 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104559.232 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104559.232 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104559.232 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104559.232 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104559.232 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104559.232 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104559.232 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104559.232 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104559.232 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104559.232 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104559.232 (3075849024)       (6)> Socket_putdatas:443
20150202 104559.232 (3075849024)        (7)> Socket_writev:399
20150202 104559.232 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104559.232 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104559.232 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104559.232 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104559.232 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104559.232 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104559.232 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104559.232 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104559.232 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104559.232 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104559.232 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104559.232 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104559.232 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104559.232 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104559.232 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104559.232 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104559.232 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104559.232 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104559.232 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104559.232 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104559.232 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104559.232 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104559.232 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104559.232 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104559.232 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104559.232 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104559.232 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104559.232 (3075849024)       (6)> Socket_putdatas:443
20150202 104559.232 (3075849024)        (7)> Socket_writev:399
20150202 104559.232 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104559.232 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104559.232 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104559.232 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104559.232 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104559.232 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104559.232 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104559.232 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104559.232 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104559.232 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104559.232 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104559.232 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104559.232 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104559.232 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104559.232 (3075849024)  (1)> Thread_wait_cond:402
20150202 104559.232 Return code 1 from read select
20150202 104559.232 (3067456320)    (3)> Socket_continueWrites:777
20150202 104559.232 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104559.232 Return code 1 from write select
20150202 104559.232 (3067456320)    (3)> isReady:192
20150202 104559.232 (3067456320)    (3)< isReady:197 (1)
20150202 104559.232 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104559.232 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104559.232 (3067456320)    (3)> Socket_getch:297
20150202 104559.232 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104559.232 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104559.232 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104559.232 queueChar: index is now 1, headerlen 1
20150202 104559.232 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104559.232 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104559.232 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104559.232 (3067456320)     (4)> Socket_getch:297
20150202 104600.232 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104600.232 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104600.232 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104600.232 queueChar: index is now 2, headerlen 2
20150202 104600.232 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104600.232 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104600.232 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104600.232 (3067456320)    (3)> Socket_getdata:336
20150202 104600.232 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104600.232 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104600.232 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104600.232 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104600.232 (3067456320)    (3)< Socket_getdata:370
20150202 104600.232 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200498

20150202 104600.232 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104600.232 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104600.232 (3075849024)  (1)> Thread_wait_cond:402
20150202 104600.232 (3067456320)     (4)> readUTFlen:352
20150202 104600.232 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62007a0

20150202 104600.232 (3067456320)     (4)< readUTFlen:364
20150202 104600.233 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104600.233 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104600.233 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104600.233 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-36;142
20150202 104600.233 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104600.233 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200a10

20150202 104600.233 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104600.233 Calling messageArrived for client InFlight, queue depth 0
20150202 104600.233 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104600.233 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104600.233 (3067456320)       (6)> UTF8_validateString:155
20150202 104600.233 (3067456320)        (7)> UTF8_validate:129
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.233 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.233 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.234 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.234 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.234 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.234 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.234 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.234 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.234 (3067456320)         (8)> UTF8_char_validate:79
20150202 104600.234 (3067456320)         (8)< UTF8_char_validate:113
20150202 104600.234 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104600.234 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104600.234 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200820

20150202 104600.234 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005c0

20150202 104600.234 (3067456320)       (6)> MQTTStrncpy:736
20150202 104600.234 (3067456320)       (6)< MQTTStrncpy:746
20150202 104600.234 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200900

20150202 104600.234 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104600.234 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62009b8

20150202 104600.234 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104600.234 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104600.234 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104600.234 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104600.234 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104600.234 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104600.234 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104600.234 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104600.234 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104600.234 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104600.234 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104600.234 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104600.234 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104600.234 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104600.234 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104600.234 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104600.234 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104600.234 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104600.234 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104600.234 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104600.234 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104600.234 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104600.234 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104600.235 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104600.235 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104600.235 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104600.235 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104600.235 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104600.235 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104600.235 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104600.235 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104600.235 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104600.235 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104600.235 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104600.235 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104600.235 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104600.235 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104600.235 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104600.235 (3075849024)       (6)> Socket_putdatas:443
20150202 104600.235 (3075849024)        (7)> Socket_writev:399
20150202 104600.235 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104600.235 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104600.235 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104600.235 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104600.235 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104600.235 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104600.235 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104600.235 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104600.235 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104600.235 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104600.235 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104600.235 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104600.235 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104600.235 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104600.235 (3075849024)  (1)> Thread_wait_cond:402
20150202 104600.235 Return code 1 from read select
20150202 104600.235 (3067456320)    (3)> Socket_continueWrites:777
20150202 104600.235 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104600.235 Return code 1 from write select
20150202 104600.235 (3067456320)    (3)> isReady:192
20150202 104600.235 (3067456320)    (3)< isReady:197 (1)
20150202 104600.235 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104600.235 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104601.234 (3067456320)    (3)> Socket_getch:297
20150202 104601.234 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104601.234 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104601.234 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104601.234 queueChar: index is now 1, headerlen 1
20150202 104601.234 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104601.234 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104601.234 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104601.234 (3067456320)     (4)> Socket_getch:297
20150202 104601.234 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104601.234 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104601.234 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104601.234 queueChar: index is now 2, headerlen 2
20150202 104601.234 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104601.234 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104601.234 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104601.234 (3067456320)    (3)> Socket_getdata:336
20150202 104601.234 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104601.234 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104601.234 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104601.235 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104601.235 (3067456320)    (3)< Socket_getdata:370
20150202 104601.235 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005c0

20150202 104601.235 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104601.235 (3067456320)     (4)> readUTFlen:352
20150202 104601.235 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200498

20150202 104601.235 (3067456320)     (4)< readUTFlen:364
20150202 104601.235 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104601.235 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104601.235 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104601.235 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-37;142
20150202 104601.235 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104601.235 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007a0

20150202 104601.235 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200658

20150202 104601.235 Calling messageArrived for client InFlight, queue depth 0
20150202 104601.235 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104601.235 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104601.235 (3067456320)       (6)> UTF8_validateString:155
20150202 104601.235 (3067456320)        (7)> UTF8_validate:129
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)         (8)> UTF8_char_validate:79
20150202 104601.235 (3067456320)         (8)< UTF8_char_validate:113
20150202 104601.235 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104601.235 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104601.235 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200968

20150202 104601.235 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200a10

20150202 104601.235 (3067456320)       (6)> MQTTStrncpy:736
20150202 104601.235 (3067456320)       (6)< MQTTStrncpy:746
20150202 104601.235 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200ba8

20150202 104601.235 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104601.235 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62005f0

20150202 104601.235 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104601.235 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104601.235 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104601.235 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104601.235 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1136 bytes

20150202 104601.235 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1072 bytes

20150202 104601.235 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104601.235 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104601.235 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1040 bytes

20150202 104601.235 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104601.235 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104601.235 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104601.235 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1008 bytes

20150202 104601.235 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104601.235 (3075849024)  (1)> Thread_wait_cond:402
20150202 104601.235 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104601.236 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104601.236 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104601.236 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104601.236 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104601.236 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104601.236 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104601.236 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104601.236 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104601.236 Return code 1 from read select
20150202 104601.236 (3067456320)    (3)> Socket_continueWrites:777
20150202 104601.236 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104601.236 Return code 1 from write select
20150202 104601.236 (3067456320)    (3)> isReady:192
20150202 104601.236 (3067456320)    (3)< isReady:197 (1)
20150202 104601.236 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104601.236 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104601.236 (3067456320)    (3)> Socket_getch:297
20150202 104601.236 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104601.236 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104601.236 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104602.236 queueChar: index is now 1, headerlen 1
20150202 104602.236 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104602.236 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104602.236 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104602.236 (3067456320)     (4)> Socket_getch:297
20150202 104602.236 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104602.236 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104602.236 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104602.236 queueChar: index is now 2, headerlen 2
20150202 104602.236 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104602.236 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104602.236 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104602.236 (3067456320)    (3)> Socket_getdata:336
20150202 104602.236 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104602.236 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104602.236 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104602.236 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104602.236 (3067456320)    (3)< Socket_getdata:370
20150202 104602.236 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005c0

20150202 104602.236 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104602.236 (3067456320)     (4)> readUTFlen:352
20150202 104602.236 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200498

20150202 104602.236 (3067456320)     (4)< readUTFlen:364
20150202 104602.236 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104602.236 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104602.236 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104602.236 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-38;142
20150202 104602.236 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104602.236 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007a0

20150202 104602.236 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104602.236 Calling messageArrived for client InFlight, queue depth 0
20150202 104602.236 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104602.236 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104602.236 (3067456320)       (6)> UTF8_validateString:155
20150202 104602.236 (3067456320)        (7)> UTF8_validate:129
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104602.236 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.236 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.236 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.237 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.237 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.237 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.237 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.237 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.237 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.237 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.237 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.237 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.237 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.237 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.237 (3067456320)         (8)> UTF8_char_validate:79
20150202 104602.237 (3067456320)         (8)< UTF8_char_validate:113
20150202 104602.237 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104602.237 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104602.237 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200900

20150202 104602.237 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62006f8

20150202 104602.237 (3067456320)       (6)> MQTTStrncpy:736
20150202 104602.237 (3067456320)       (6)< MQTTStrncpy:746
20150202 104602.237 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200820

20150202 104602.237 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104602.237 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b88

20150202 104602.237 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104602.237 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104602.237 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104602.237 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104602.237 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1312 bytes

20150202 104602.237 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1248 bytes

20150202 104602.237 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104602.237 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104602.237 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1216 bytes

20150202 104602.237 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104602.237 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104602.237 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104602.237 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1184 bytes

20150202 104602.237 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104602.237 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104602.237 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104602.237 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104602.237 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104602.237 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104602.237 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104602.237 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104602.237 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104602.237 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104602.237 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104602.237 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104602.237 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104602.237 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104602.237 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104602.237 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104602.237 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1184 bytes

20150202 104602.237 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1152 bytes

20150202 104602.237 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104602.237 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104602.237 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104602.237 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104602.237 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104602.237 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104602.237 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104602.238 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104602.238 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104602.238 (3075849024)       (6)> Socket_putdatas:443
20150202 104602.238 (3075849024)        (7)> Socket_writev:399
20150202 104602.238 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104602.238 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104602.238 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1200 bytes

20150202 104602.238 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104602.238 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1184 bytes

20150202 104602.238 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104602.238 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104602.238 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104602.238 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104602.238 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1168 bytes

20150202 104602.238 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1136 bytes

20150202 104602.238 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1104 bytes

20150202 104602.238 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104602.238 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104602.238 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104602.238 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104602.238 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104602.238 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104602.238 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104602.238 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104602.238 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104602.238 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104602.238 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104602.238 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104602.238 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104602.238 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104602.238 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104602.238 (3075849024)       (6)> Socket_putdatas:443
20150202 104602.238 (3075849024)        (7)> Socket_writev:399
20150202 104602.238 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104602.238 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104602.238 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104602.238 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104602.238 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104602.238 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104602.238 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104602.239 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104602.239 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104602.239 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104602.239 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104602.239 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104602.239 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104602.239 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104602.239 (3075849024)  (1)> Thread_wait_cond:402
20150202 104602.239 Return code 1 from read select
20150202 104602.239 (3067456320)    (3)> Socket_continueWrites:777
20150202 104602.239 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104602.239 Return code 1 from write select
20150202 104602.239 (3067456320)    (3)> isReady:192
20150202 104602.239 (3067456320)    (3)< isReady:197 (1)
20150202 104602.239 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104602.239 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104602.239 (3067456320)    (3)> Socket_getch:297
20150202 104602.239 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104602.239 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104602.239 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104603.238 queueChar: index is now 1, headerlen 1
20150202 104603.238 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104603.238 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104603.238 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104603.238 (3067456320)     (4)> Socket_getch:297
20150202 104603.238 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104603.238 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104603.238 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104603.238 queueChar: index is now 2, headerlen 2
20150202 104603.238 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104603.238 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104603.238 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104603.238 (3067456320)    (3)> Socket_getdata:336
20150202 104603.238 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104603.238 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104603.238 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104603.238 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104603.238 (3067456320)    (3)< Socket_getdata:370
20150202 104603.238 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62006f8

20150202 104603.238 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104603.238 (3067456320)     (4)> readUTFlen:352
20150202 104603.238 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200748

20150202 104603.238 (3067456320)     (4)< readUTFlen:364
20150202 104603.238 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104603.238 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104603.238 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104603.238 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-39;142
20150202 104603.238 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104603.238 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200658

20150202 104603.238 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104603.238 Calling messageArrived for client InFlight, queue depth 0
20150202 104603.238 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104603.238 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104603.238 (3067456320)       (6)> UTF8_validateString:155
20150202 104603.238 (3067456320)        (7)> UTF8_validate:129
20150202 104603.238 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.238 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.238 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.238 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.238 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)         (8)> UTF8_char_validate:79
20150202 104603.239 (3067456320)         (8)< UTF8_char_validate:113
20150202 104603.239 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104603.239 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104603.239 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62007a0

20150202 104603.239 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200b48

20150202 104603.239 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104603.239 (3075849024)  (1)> Thread_wait_cond:402
20150202 104603.239 (3067456320)       (6)> MQTTStrncpy:736
20150202 104603.239 (3067456320)       (6)< MQTTStrncpy:746
20150202 104603.239 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200820

20150202 104603.240 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104603.240 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200468

20150202 104603.240 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104603.240 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104603.240 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104603.240 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104603.240 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104603.240 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104603.240 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104603.240 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104603.240 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104603.240 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104603.240 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104603.240 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104603.240 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104603.240 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104603.240 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104603.240 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104603.240 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104603.240 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104603.240 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104603.240 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104603.240 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104603.240 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104603.240 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104603.240 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104603.240 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104603.240 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104603.240 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104603.240 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104603.240 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104603.240 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104603.240 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104603.240 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104603.240 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104603.240 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104603.240 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104603.240 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104603.240 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104603.240 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104603.241 (3075849024)       (6)> Socket_putdatas:443
20150202 104603.241 (3075849024)        (7)> Socket_writev:399
20150202 104603.241 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104603.241 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104603.241 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104603.241 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104603.241 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104603.241 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104603.241 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104603.241 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104603.241 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104603.241 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104603.241 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104603.241 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104603.241 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104603.241 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104603.241 (3075849024)  (1)> Thread_wait_cond:402
20150202 104603.241 Return code 1 from read select
20150202 104603.241 (3067456320)    (3)> Socket_continueWrites:777
20150202 104603.241 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104604.240 Return code 1 from write select
20150202 104604.240 (3067456320)    (3)> isReady:192
20150202 104604.240 (3067456320)    (3)< isReady:197 (1)
20150202 104604.240 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104604.240 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104604.240 (3067456320)    (3)> Socket_getch:297
20150202 104604.240 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104604.240 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104604.240 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104604.240 queueChar: index is now 1, headerlen 1
20150202 104604.240 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104604.240 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104604.240 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104604.240 (3067456320)     (4)> Socket_getch:297
20150202 104604.240 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104604.240 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104604.240 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104604.240 queueChar: index is now 2, headerlen 2
20150202 104604.240 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104604.240 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104604.240 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104604.240 (3067456320)    (3)> Socket_getdata:336
20150202 104604.240 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104604.240 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104604.240 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104604.240 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104604.240 (3067456320)    (3)< Socket_getdata:370
20150202 104604.240 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200b48

20150202 104604.240 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104604.240 (3067456320)     (4)> readUTFlen:352
20150202 104604.240 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62006f8

20150202 104604.240 (3067456320)     (4)< readUTFlen:364
20150202 104604.240 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104604.240 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104604.240 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104604.240 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-40;142
20150202 104604.240 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104604.240 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200658

20150202 104604.240 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104604.240 Calling messageArrived for client InFlight, queue depth 0
20150202 104604.240 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104604.240 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104604.240 (3067456320)       (6)> UTF8_validateString:155
20150202 104604.240 (3067456320)        (7)> UTF8_validate:129
20150202 104604.240 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.240 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.240 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.240 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.240 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.240 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.240 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.240 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.240 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.240 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.240 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.240 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.240 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.240 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.240 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.240 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)         (8)> UTF8_char_validate:79
20150202 104604.241 (3067456320)         (8)< UTF8_char_validate:113
20150202 104604.241 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104604.241 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104604.241 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200820

20150202 104604.241 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62004a8

20150202 104604.241 (3067456320)       (6)> MQTTStrncpy:736
20150202 104604.241 (3067456320)       (6)< MQTTStrncpy:746
20150202 104604.241 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62007a0

20150202 104604.241 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104604.241 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b88

20150202 104604.241 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104604.241 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104604.241 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104604.241 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104604.241 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104604.241 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104604.241 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104604.241 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104604.241 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104604.241 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104604.241 (3075849024)  (1)> Thread_wait_cond:402
20150202 104604.242 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104604.242 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104604.242 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104604.242 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104604.242 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104604.242 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104604.242 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104604.242 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104604.242 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104604.242 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104604.242 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104604.242 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104604.242 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104604.242 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104604.242 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104604.242 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104604.242 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104604.242 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104604.242 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104604.242 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104605.242 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104605.242 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104605.242 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104605.242 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104605.242 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104605.242 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104605.242 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104605.242 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104605.242 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104605.242 (3075849024)       (6)> Socket_putdatas:443
20150202 104605.242 (3075849024)        (7)> Socket_writev:399
20150202 104605.242 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104605.242 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104605.242 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104605.242 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104605.242 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104605.242 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104605.242 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104605.242 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104605.242 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104605.242 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104605.242 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104605.242 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104605.242 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104605.242 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104605.242 (3075849024)  (1)> Thread_wait_cond:402
20150202 104605.242 Return code 0 from read select
20150202 104605.242 (3067456320)    (3)> Socket_continueWrites:777
20150202 104605.242 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104605.242 Return code 1 from write select
20150202 104605.242 (3067456320)    (3)> isReady:192
20150202 104605.242 (3067456320)    (3)< isReady:197 (0)
20150202 104605.242 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104605.242 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104605.242 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104605.242 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104605.242 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104605.242 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104605.242 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104605.242 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104605.343 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104605.343 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104605.343 Return code 1 from read select
20150202 104605.343 (3067456320)    (3)> Socket_continueWrites:777
20150202 104605.343 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104605.343 Return code 1 from write select
20150202 104605.343 (3067456320)    (3)> isReady:192
20150202 104605.343 (3067456320)    (3)< isReady:197 (1)
20150202 104605.343 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104605.343 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104605.343 (3067456320)    (3)> Socket_getch:297
20150202 104605.343 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104605.343 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104605.343 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104605.343 queueChar: index is now 1, headerlen 1
20150202 104605.343 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104605.343 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104605.343 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104605.343 (3067456320)     (4)> Socket_getch:297
20150202 104605.343 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104605.573 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104605.573 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104605.573 queueChar: index is now 2, headerlen 2
20150202 104605.573 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104605.573 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104605.573 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104605.573 (3067456320)    (3)> Socket_getdata:336
20150202 104605.573 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104605.573 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104605.573 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104605.573 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104605.573 (3067456320)    (3)< Socket_getdata:370
20150202 104605.573 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200b48

20150202 104605.573 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104605.573 (3067456320)     (4)> readUTFlen:352
20150202 104605.573 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62006f8

20150202 104605.573 (3067456320)     (4)< readUTFlen:364
20150202 104605.573 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104605.573 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104605.573 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104605.573 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-41;142
20150202 104605.573 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104605.573 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200658

20150202 104605.573 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104605.573 Calling messageArrived for client InFlight, queue depth 0
20150202 104605.573 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104605.573 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104605.573 (3067456320)       (6)> UTF8_validateString:155
20150202 104605.573 (3067456320)        (7)> UTF8_validate:129
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.573 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.573 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.574 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.574 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.574 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.574 (3067456320)         (8)> UTF8_char_validate:79
20150202 104605.574 (3067456320)         (8)< UTF8_char_validate:113
20150202 104605.574 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104605.574 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104605.574 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62007a0

20150202 104605.574 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200820

20150202 104605.574 (3067456320)       (6)> MQTTStrncpy:736
20150202 104605.574 (3067456320)       (6)< MQTTStrncpy:746
20150202 104605.574 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200530

20150202 104605.574 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104605.574 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200870

20150202 104605.574 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104605.574 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104605.574 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104605.574 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104605.574 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104605.574 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104605.574 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104605.574 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104605.574 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104605.574 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104605.574 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104605.574 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104605.574 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104605.574 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104605.574 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104605.574 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104605.574 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104605.574 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104605.574 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104605.574 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104605.574 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104605.574 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104605.574 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104605.574 (3075849024)  (1)> Thread_wait_cond:402
20150202 104605.574 Return code 1 from read select
20150202 104605.574 (3067456320)    (3)> Socket_continueWrites:777
20150202 104606.242 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104606.242 Return code 1 from write select
20150202 104606.242 (3067456320)    (3)> isReady:192
20150202 104606.242 (3067456320)    (3)< isReady:197 (1)
20150202 104606.242 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104606.242 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104606.242 (3067456320)    (3)> Socket_getch:297
20150202 104606.242 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104606.242 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104606.242 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104606.242 queueChar: index is now 1, headerlen 1
20150202 104606.242 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104606.242 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104606.242 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104606.242 (3067456320)     (4)> Socket_getch:297
20150202 104606.242 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104606.242 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104606.242 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104606.242 queueChar: index is now 2, headerlen 2
20150202 104606.242 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104606.243 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104606.243 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104606.243 (3067456320)    (3)> Socket_getdata:336
20150202 104606.243 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104606.243 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104606.243 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104606.243 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104606.243 (3067456320)    (3)< Socket_getdata:370
20150202 104606.243 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200b48

20150202 104606.243 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104606.243 (3067456320)     (4)> readUTFlen:352
20150202 104606.243 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62006f8

20150202 104606.243 (3067456320)     (4)< readUTFlen:364
20150202 104606.243 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104606.243 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104606.243 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104606.243 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-42;142
20150202 104606.243 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104606.243 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200658

20150202 104606.243 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104606.243 Calling messageArrived for client InFlight, queue depth 0
20150202 104606.243 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104606.243 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104606.243 (3067456320)       (6)> UTF8_validateString:155
20150202 104606.243 (3067456320)        (7)> UTF8_validate:129
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)         (8)> UTF8_char_validate:79
20150202 104606.243 (3067456320)         (8)< UTF8_char_validate:113
20150202 104606.243 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104606.243 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104606.243 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62005c0

20150202 104606.243 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62008a8

20150202 104606.243 (3067456320)       (6)> MQTTStrncpy:736
20150202 104606.243 (3067456320)       (6)< MQTTStrncpy:746
20150202 104606.243 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200910

20150202 104606.243 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104606.243 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200ba8

20150202 104606.243 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104606.243 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104606.243 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104606.243 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104606.243 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104606.243 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104606.243 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104606.243 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104606.243 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104606.243 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104606.244 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104606.244 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104606.244 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104606.244 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104606.244 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104606.244 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104606.244 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104606.244 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104606.244 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104606.244 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104606.244 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104606.244 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104606.244 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104606.244 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104606.244 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104606.244 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104606.244 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104606.244 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104606.244 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104606.244 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104606.244 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104606.244 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104606.244 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104606.244 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104606.244 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104606.244 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104606.244 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104606.244 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104606.244 (3075849024)       (6)> Socket_putdatas:443
20150202 104606.244 (3075849024)        (7)> Socket_writev:399
20150202 104606.244 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104606.244 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104606.244 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104606.244 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104606.244 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104606.244 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104606.244 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104606.244 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104606.244 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104606.244 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104606.245 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104606.245 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104606.245 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104606.245 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104606.245 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104606.245 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104606.245 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104606.245 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104606.245 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104606.245 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104606.245 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104606.245 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104606.245 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104606.245 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104606.245 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104606.245 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104606.245 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104606.245 (3075849024)       (6)> Socket_putdatas:443
20150202 104606.245 (3075849024)        (7)> Socket_writev:399
20150202 104606.245 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104606.245 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104606.245 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104606.245 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104606.245 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104606.245 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104606.245 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104606.245 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104606.245 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104606.245 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104606.245 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104606.245 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104606.245 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104606.245 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104606.245 (3075849024)  (1)> Thread_wait_cond:402
20150202 104606.245 Return code 1 from read select
20150202 104606.245 (3067456320)    (3)> Socket_continueWrites:777
20150202 104606.245 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104606.245 Return code 1 from write select
20150202 104606.245 (3067456320)    (3)> isReady:192
20150202 104606.245 (3067456320)    (3)< isReady:197 (1)
20150202 104607.243 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104607.243 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104607.243 (3067456320)    (3)> Socket_getch:297
20150202 104607.243 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104607.243 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104607.243 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104607.243 queueChar: index is now 1, headerlen 1
20150202 104607.243 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104607.243 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104607.243 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104607.243 (3067456320)     (4)> Socket_getch:297
20150202 104607.243 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104607.243 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104607.243 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104607.243 queueChar: index is now 2, headerlen 2
20150202 104607.243 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104607.243 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104607.243 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104607.243 (3067456320)    (3)> Socket_getdata:336
20150202 104607.243 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104607.244 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104607.244 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104607.244 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104607.244 (3067456320)    (3)< Socket_getdata:370
20150202 104607.244 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62008a8

20150202 104607.244 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104607.244 (3067456320)     (4)> readUTFlen:352
20150202 104607.244 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200820

20150202 104607.244 (3067456320)     (4)< readUTFlen:364
20150202 104607.244 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104607.244 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104607.244 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104607.244 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-43;142
20150202 104607.244 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104607.244 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200b48

20150202 104607.244 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104607.244 Calling messageArrived for client InFlight, queue depth 0
20150202 104607.244 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104607.244 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104607.244 (3067456320)       (6)> UTF8_validateString:155
20150202 104607.244 (3067456320)        (7)> UTF8_validate:129
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)         (8)> UTF8_char_validate:79
20150202 104607.244 (3067456320)         (8)< UTF8_char_validate:113
20150202 104607.244 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104607.244 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104607.244 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62007a0

20150202 104607.245 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62006f8

20150202 104607.245 (3067456320)       (6)> MQTTStrncpy:736
20150202 104607.245 (3067456320)       (6)< MQTTStrncpy:746
20150202 104607.245 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200910

20150202 104607.245 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104607.245 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62009f0

20150202 104607.245 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104607.245 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104607.245 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104607.245 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104607.245 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104607.245 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104607.245 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104607.245 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104607.245 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104607.245 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104607.245 (3075849024)  (1)> Thread_wait_cond:402
20150202 104607.245 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104607.245 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104607.245 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104607.245 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104607.245 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104607.245 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104607.245 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104607.245 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104607.245 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104607.245 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104607.245 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104607.245 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104607.245 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104607.245 Return code 1 from read select
20150202 104607.245 (3067456320)    (3)> Socket_continueWrites:777
20150202 104607.245 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104607.245 Return code 1 from write select
20150202 104607.245 (3067456320)    (3)> isReady:192
20150202 104607.245 (3067456320)    (3)< isReady:197 (1)
20150202 104607.245 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104607.245 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104607.245 (3067456320)    (3)> Socket_getch:297
20150202 104607.245 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104608.245 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104608.245 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104608.245 queueChar: index is now 1, headerlen 1
20150202 104608.245 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104608.245 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104608.245 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104608.245 (3067456320)     (4)> Socket_getch:297
20150202 104608.245 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104608.245 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104608.245 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104608.245 queueChar: index is now 2, headerlen 2
20150202 104608.245 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104608.245 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104608.245 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104608.245 (3067456320)    (3)> Socket_getdata:336
20150202 104608.245 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104608.245 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104608.245 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104608.245 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104608.245 (3067456320)    (3)< Socket_getdata:370
20150202 104608.245 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62008a8

20150202 104608.245 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104608.245 (3067456320)     (4)> readUTFlen:352
20150202 104608.245 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200820

20150202 104608.245 (3067456320)     (4)< readUTFlen:364
20150202 104608.245 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104608.245 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104608.245 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104608.245 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-44;142
20150202 104608.245 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104608.245 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200b48

20150202 104608.245 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62005c0

20150202 104608.245 Calling messageArrived for client InFlight, queue depth 0
20150202 104608.245 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104608.245 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104608.245 (3067456320)       (6)> UTF8_validateString:155
20150202 104608.245 (3067456320)        (7)> UTF8_validate:129
20150202 104608.245 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.245 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.245 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)         (8)> UTF8_char_validate:79
20150202 104608.246 (3067456320)         (8)< UTF8_char_validate:113
20150202 104608.246 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104608.246 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104608.246 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a90

20150202 104608.246 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200658

20150202 104608.246 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104608.246 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104608.246 (3067456320)       (6)> MQTTStrncpy:736
20150202 104608.247 (3067456320)       (6)< MQTTStrncpy:746
20150202 104608.247 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200530

20150202 104608.247 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104608.247 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200bc8

20150202 104608.247 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104608.247 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104608.247 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104608.247 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104608.247 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104608.247 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104608.247 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104608.247 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104608.247 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104608.247 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104608.247 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104608.247 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104608.247 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104608.247 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104608.247 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104608.247 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104608.247 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104608.247 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104608.247 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104608.247 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104608.247 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104608.247 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104608.247 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104608.247 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104608.247 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104608.247 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104608.247 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104608.247 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104608.247 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104608.247 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104608.247 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104608.247 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104608.247 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104608.247 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104608.247 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104608.247 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104608.247 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104608.247 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104608.247 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104608.247 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104608.247 (3075849024)       (6)> Socket_putdatas:443
20150202 104608.247 (3075849024)        (7)> Socket_writev:399
20150202 104608.247 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104608.247 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104608.247 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104608.247 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104608.247 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104608.247 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104608.247 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104608.247 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104608.247 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104608.247 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104608.247 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104608.247 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104608.247 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104608.247 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104608.248 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104608.248 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104608.248 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104608.248 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104608.248 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104608.248 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104608.248 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104608.248 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104608.248 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104608.248 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104608.248 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104608.248 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104608.248 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104608.248 (3075849024)       (6)> Socket_putdatas:443
20150202 104608.248 (3075849024)        (7)> Socket_writev:399
20150202 104608.248 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104608.248 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104608.248 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104608.248 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104608.248 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104608.248 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104608.248 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104608.248 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104608.248 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104608.248 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104608.248 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104608.248 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104608.248 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104608.248 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104608.248 (3075849024)  (1)> Thread_wait_cond:402
20150202 104608.248 Return code 1 from read select
20150202 104608.248 (3067456320)    (3)> Socket_continueWrites:777
20150202 104608.248 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104608.248 Return code 1 from write select
20150202 104608.248 (3067456320)    (3)> isReady:192
20150202 104608.248 (3067456320)    (3)< isReady:197 (1)
20150202 104608.248 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104608.248 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104608.248 (3067456320)    (3)> Socket_getch:297
20150202 104608.248 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104609.246 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104609.246 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104609.246 queueChar: index is now 1, headerlen 1
20150202 104609.246 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104609.246 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104609.246 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104609.246 (3067456320)     (4)> Socket_getch:297
20150202 104609.246 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104609.246 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104609.246 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104609.246 queueChar: index is now 2, headerlen 2
20150202 104609.246 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104609.246 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104609.246 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104609.246 (3067456320)    (3)> Socket_getdata:336
20150202 104609.246 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104609.246 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104609.246 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104609.246 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104609.246 (3067456320)    (3)< Socket_getdata:370
20150202 104609.247 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200658

20150202 104609.247 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104609.247 (3067456320)     (4)> readUTFlen:352
20150202 104609.247 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62006f8

20150202 104609.247 (3067456320)     (4)< readUTFlen:364
20150202 104609.247 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104609.247 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104609.247 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104609.247 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-45;142
20150202 104609.247 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104609.247 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62008a8

20150202 104609.247 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62005c0

20150202 104609.247 Calling messageArrived for client InFlight, queue depth 0
20150202 104609.247 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104609.247 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104609.247 (3067456320)       (6)> UTF8_validateString:155
20150202 104609.247 (3067456320)        (7)> UTF8_validate:129
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)         (8)> UTF8_char_validate:79
20150202 104609.247 (3067456320)         (8)< UTF8_char_validate:113
20150202 104609.247 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104609.247 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104609.247 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200910

20150202 104609.247 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200820

20150202 104609.247 (3067456320)       (6)> MQTTStrncpy:736
20150202 104609.247 (3067456320)       (6)< MQTTStrncpy:746
20150202 104609.247 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62007a0

20150202 104609.248 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104609.248 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200688

20150202 104609.248 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104609.248 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104609.248 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104609.248 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104609.248 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104609.248 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104609.248 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104609.248 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104609.248 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104609.248 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104609.248 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104609.248 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104609.248 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104609.248 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104609.248 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104609.248 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104609.248 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104609.248 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104609.248 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104609.248 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104609.248 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104609.248 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104609.248 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104609.248 (3075849024)  (1)> Thread_wait_cond:402
20150202 104609.248 Return code 1 from read select
20150202 104609.248 (3067456320)    (3)> Socket_continueWrites:777
20150202 104609.248 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104609.248 Return code 1 from write select
20150202 104609.248 (3067456320)    (3)> isReady:192
20150202 104609.248 (3067456320)    (3)< isReady:197 (1)
20150202 104609.248 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104609.248 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104609.248 (3067456320)    (3)> Socket_getch:297
20150202 104609.248 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104609.248 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104609.248 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104609.248 queueChar: index is now 1, headerlen 1
20150202 104609.248 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104610.248 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104610.248 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104610.248 (3067456320)     (4)> Socket_getch:297
20150202 104610.248 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104610.248 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104610.248 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104610.248 queueChar: index is now 2, headerlen 2
20150202 104610.248 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104610.248 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104610.248 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104610.248 (3067456320)    (3)> Socket_getdata:336
20150202 104610.248 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104610.248 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104610.248 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104610.248 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104610.248 (3067456320)    (3)< Socket_getdata:370
20150202 104610.248 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200658

20150202 104610.248 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104610.248 (3067456320)     (4)> readUTFlen:352
20150202 104610.248 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62006f8

20150202 104610.248 (3067456320)     (4)< readUTFlen:364
20150202 104610.248 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104610.248 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104610.248 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104610.248 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-46;142
20150202 104610.248 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104610.248 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62008a8

20150202 104610.248 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104610.248 Calling messageArrived for client InFlight, queue depth 0
20150202 104610.248 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104610.248 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104610.248 (3067456320)       (6)> UTF8_validateString:155
20150202 104610.248 (3067456320)        (7)> UTF8_validate:129
20150202 104610.248 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.248 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.248 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.248 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.248 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.248 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.248 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)         (8)> UTF8_char_validate:79
20150202 104610.249 (3067456320)         (8)< UTF8_char_validate:113
20150202 104610.249 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104610.249 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104610.249 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62005c0

20150202 104610.249 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200b48

20150202 104610.249 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104610.249 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104610.249 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104610.249 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104610.249 (3067456320)       (6)> MQTTStrncpy:736
20150202 104610.249 (3067456320)       (6)< MQTTStrncpy:746
20150202 104610.249 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200530

20150202 104610.250 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104610.250 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200960

20150202 104610.250 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104610.250 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104610.250 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104610.250 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104610.250 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104610.250 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104610.250 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104610.250 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104610.250 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104610.250 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104610.250 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104610.250 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104610.250 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104610.250 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104610.250 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104610.250 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104610.250 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104610.250 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104610.251 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104610.251 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104610.251 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104610.251 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104610.251 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104610.251 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104610.251 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104610.251 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104610.251 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104610.251 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104610.251 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104610.251 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104610.251 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104610.251 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104610.251 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104610.251 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104610.251 (3075849024)       (6)> Socket_putdatas:443
20150202 104610.251 (3075849024)        (7)> Socket_writev:399
20150202 104610.251 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104610.251 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104610.251 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104610.251 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104610.251 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104610.251 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104610.251 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104610.251 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104610.251 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104610.251 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104610.251 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104610.251 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104610.251 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104610.251 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104610.251 (3075849024)  (1)> Thread_wait_cond:402
20150202 104610.251 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104610.251 (3075849024)  (1)> Thread_wait_cond:402
20150202 104610.251 Return code 0 from read select
20150202 104610.251 (3067456320)    (3)> Socket_continueWrites:777
20150202 104610.251 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104610.251 Return code 1 from write select
20150202 104610.251 (3067456320)    (3)> isReady:192
20150202 104611.253 (3067456320)    (3)< isReady:197 (0)
20150202 104611.253 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104611.253 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104611.253 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104611.253 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104611.253 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104611.253 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104611.253 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104611.253 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104611.253 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104611.253 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104611.253 Return code 1 from read select
20150202 104611.253 (3067456320)    (3)> Socket_continueWrites:777
20150202 104611.253 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104611.253 Return code 1 from write select
20150202 104611.253 (3067456320)    (3)> isReady:192
20150202 104611.253 (3067456320)    (3)< isReady:197 (1)
20150202 104611.253 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104611.253 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104611.253 (3067456320)    (3)> Socket_getch:297
20150202 104611.585 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104611.585 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104611.585 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104611.585 queueChar: index is now 1, headerlen 1
20150202 104611.585 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104611.585 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104611.585 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104611.585 (3067456320)     (4)> Socket_getch:297
20150202 104611.585 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104611.585 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104611.585 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104611.585 queueChar: index is now 2, headerlen 2
20150202 104611.585 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104611.585 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104611.585 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104611.585 (3067456320)    (3)> Socket_getdata:336
20150202 104611.585 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104611.585 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104611.585 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104611.585 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104611.585 (3067456320)    (3)< Socket_getdata:370
20150202 104611.585 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200820

20150202 104611.585 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104611.585 (3067456320)     (4)> readUTFlen:352
20150202 104611.585 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200658

20150202 104611.585 (3067456320)     (4)< readUTFlen:364
20150202 104611.585 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104611.585 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104611.585 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104611.585 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-47;142
20150202 104611.585 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104611.585 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62006f8

20150202 104611.585 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104611.585 Calling messageArrived for client InFlight, queue depth 0
20150202 104611.585 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104611.585 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104611.585 (3067456320)       (6)> UTF8_validateString:155
20150202 104611.585 (3067456320)        (7)> UTF8_validate:129
20150202 104611.585 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.585 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)         (8)> UTF8_char_validate:79
20150202 104611.586 (3067456320)         (8)< UTF8_char_validate:113
20150202 104611.586 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104611.586 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104611.586 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62007a0

20150202 104611.586 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62008a8

20150202 104611.586 (3067456320)       (6)> MQTTStrncpy:736
20150202 104611.586 (3067456320)       (6)< MQTTStrncpy:746
20150202 104611.586 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200910

20150202 104611.586 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104611.586 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200bc8

20150202 104611.586 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104611.586 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104611.586 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104611.586 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104611.586 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104611.586 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104611.586 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104611.586 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104611.586 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104611.586 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104611.586 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104611.586 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104611.586 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104611.586 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104611.586 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104611.586 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104611.586 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104611.587 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104611.587 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104611.587 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104611.587 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104611.587 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104611.587 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104611.587 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104611.587 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104611.587 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104611.587 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104611.587 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104611.587 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104611.587 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104611.587 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104611.587 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104611.587 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104611.587 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104611.587 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104611.587 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104611.587 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104611.587 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104611.587 (3075849024)       (6)> Socket_putdatas:443
20150202 104611.587 (3075849024)        (7)> Socket_writev:399
20150202 104611.587 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104611.587 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104611.587 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104611.587 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104611.587 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104611.587 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104611.587 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104611.587 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104611.587 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104611.587 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104611.587 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104611.587 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104611.587 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104611.587 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104611.587 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104611.587 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104611.587 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104611.588 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104611.588 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104611.588 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104611.588 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104611.588 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104611.588 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104611.588 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104611.588 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104611.588 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104611.588 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104611.588 (3075849024)       (6)> Socket_putdatas:443
20150202 104611.588 (3075849024)        (7)> Socket_writev:399
20150202 104611.588 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104611.588 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104611.588 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104611.588 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104611.588 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104611.588 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104611.588 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104611.588 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104611.588 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104611.588 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104611.588 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104611.588 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104611.588 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104611.588 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104611.588 (3075849024)  (1)> Thread_wait_cond:402
20150202 104611.588 Return code 1 from read select
20150202 104611.588 (3067456320)    (3)> Socket_continueWrites:777
20150202 104611.588 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104611.588 Return code 1 from write select
20150202 104611.588 (3067456320)    (3)> isReady:192
20150202 104611.588 (3067456320)    (3)< isReady:197 (1)
20150202 104611.588 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104611.588 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104611.588 (3067456320)    (3)> Socket_getch:297
20150202 104611.588 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104611.588 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104611.588 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104611.588 queueChar: index is now 1, headerlen 1
20150202 104612.251 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104612.251 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104612.251 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104612.251 (3067456320)     (4)> Socket_getch:297
20150202 104612.251 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104612.251 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104612.251 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104612.251 queueChar: index is now 2, headerlen 2
20150202 104612.251 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104612.251 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104612.251 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104612.251 (3067456320)    (3)> Socket_getdata:336
20150202 104612.251 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104612.251 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104612.251 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104612.251 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104612.251 (3067456320)    (3)< Socket_getdata:370
20150202 104612.251 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62008a8

20150202 104612.251 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104612.251 (3067456320)     (4)> readUTFlen:352
20150202 104612.252 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200b48

20150202 104612.252 (3067456320)     (4)< readUTFlen:364
20150202 104612.252 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104612.252 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104612.252 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104612.252 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-48;142
20150202 104612.252 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104612.252 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200820

20150202 104612.252 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104612.252 Calling messageArrived for client InFlight, queue depth 0
20150202 104612.252 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104612.252 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104612.252 (3067456320)       (6)> UTF8_validateString:155
20150202 104612.252 (3067456320)        (7)> UTF8_validate:129
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)         (8)> UTF8_char_validate:79
20150202 104612.252 (3067456320)         (8)< UTF8_char_validate:113
20150202 104612.252 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104612.252 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104612.252 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62005c0

20150202 104612.252 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200658

20150202 104612.252 (3067456320)       (6)> MQTTStrncpy:736
20150202 104612.252 (3067456320)       (6)< MQTTStrncpy:746
20150202 104612.252 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200910

20150202 104612.252 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104612.252 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200850

20150202 104612.252 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104612.252 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104612.252 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104612.252 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104612.252 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104612.252 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104612.252 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104612.252 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104612.252 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104612.252 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104612.252 (3075849024)  (1)> Thread_wait_cond:402
20150202 104612.252 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104612.252 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104612.252 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104612.252 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104612.252 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104612.252 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104612.252 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104612.252 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104612.252 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104612.252 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104612.253 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104612.253 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104612.253 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104612.253 Return code 1 from read select
20150202 104612.253 (3067456320)    (3)> Socket_continueWrites:777
20150202 104612.253 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104612.253 Return code 1 from write select
20150202 104612.253 (3067456320)    (3)> isReady:192
20150202 104612.253 (3067456320)    (3)< isReady:197 (1)
20150202 104612.253 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104612.253 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104612.253 (3067456320)    (3)> Socket_getch:297
20150202 104612.253 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104612.253 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104612.253 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104612.253 queueChar: index is now 1, headerlen 1
20150202 104612.253 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104612.253 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104612.253 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104612.253 (3067456320)     (4)> Socket_getch:297
20150202 104613.253 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104613.253 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104613.253 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104613.253 queueChar: index is now 2, headerlen 2
20150202 104613.253 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104613.253 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104613.253 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104613.253 (3067456320)    (3)> Socket_getdata:336
20150202 104613.253 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104613.253 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104613.253 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104613.253 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104613.253 (3067456320)    (3)< Socket_getdata:370
20150202 104613.253 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62008a8

20150202 104613.253 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104613.253 (3067456320)     (4)> readUTFlen:352
20150202 104613.253 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200b48

20150202 104613.253 (3067456320)     (4)< readUTFlen:364
20150202 104613.253 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104613.253 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104613.253 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104613.253 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-49;142
20150202 104613.253 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104613.253 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200820

20150202 104613.253 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62007a0

20150202 104613.253 Calling messageArrived for client InFlight, queue depth 0
20150202 104613.253 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104613.253 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104613.253 (3067456320)       (6)> UTF8_validateString:155
20150202 104613.253 (3067456320)        (7)> UTF8_validate:129
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.253 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.253 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.254 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.254 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.254 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.254 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.254 (3067456320)         (8)> UTF8_char_validate:79
20150202 104613.254 (3067456320)         (8)< UTF8_char_validate:113
20150202 104613.254 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104613.254 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104613.254 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a90

20150202 104613.254 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62006f8

20150202 104613.254 (3067456320)       (6)> MQTTStrncpy:736
20150202 104613.254 (3067456320)       (6)< MQTTStrncpy:746
20150202 104613.254 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200530

20150202 104613.254 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104613.254 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62009b8

20150202 104613.254 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104613.254 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104613.254 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104613.254 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104613.254 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104613.254 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104613.254 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104613.254 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104613.254 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104613.254 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104613.254 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104613.254 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104613.254 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104613.254 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104613.254 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104613.254 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104613.254 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104613.254 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104613.254 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104613.254 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104613.254 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104613.254 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104613.254 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104613.254 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104613.254 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104613.255 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104613.255 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104613.255 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104613.255 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104613.255 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104613.255 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104613.255 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104613.255 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104613.255 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104613.255 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104613.255 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104613.255 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104613.255 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104613.255 (3075849024)       (6)> Socket_putdatas:443
20150202 104613.255 (3075849024)        (7)> Socket_writev:399
20150202 104613.255 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104613.255 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104613.255 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104613.255 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104613.255 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104613.256 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104613.256 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104613.256 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104613.256 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104613.256 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104613.256 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104613.256 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104613.256 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104613.256 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104613.256 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104613.256 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104613.256 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104613.256 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104613.256 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104613.256 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104613.256 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104613.256 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104613.256 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104613.256 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104613.256 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104613.256 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104613.256 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104613.256 (3075849024)       (6)> Socket_putdatas:443
20150202 104613.256 (3075849024)        (7)> Socket_writev:399
20150202 104613.256 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104613.256 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104613.256 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104613.256 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104613.256 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104613.256 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104613.256 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104613.256 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104613.256 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104613.256 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104613.256 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104613.256 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104613.256 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104613.256 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104613.256 (3075849024)  (1)> Thread_wait_cond:402
20150202 104613.256 Return code 1 from read select
20150202 104614.255 (3067456320)    (3)> Socket_continueWrites:777
20150202 104614.255 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104614.255 Return code 1 from write select
20150202 104614.255 (3067456320)    (3)> isReady:192
20150202 104614.255 (3067456320)    (3)< isReady:197 (1)
20150202 104614.255 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104614.255 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104614.255 (3067456320)    (3)> Socket_getch:297
20150202 104614.255 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104614.255 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104614.255 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104614.255 queueChar: index is now 1, headerlen 1
20150202 104614.255 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104614.255 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104614.255 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104614.255 (3067456320)     (4)> Socket_getch:297
20150202 104614.255 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104614.255 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104614.255 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104614.255 queueChar: index is now 2, headerlen 2
20150202 104614.255 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104614.255 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104614.255 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104614.255 (3067456320)    (3)> Socket_getdata:336
20150202 104614.255 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104614.255 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104614.255 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104614.255 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104614.255 (3067456320)    (3)< Socket_getdata:370
20150202 104614.255 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62006f8

20150202 104614.255 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104614.255 (3067456320)     (4)> readUTFlen:352
20150202 104614.255 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200658

20150202 104614.255 (3067456320)     (4)< readUTFlen:364
20150202 104614.255 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104614.255 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104614.255 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104614.255 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-50;142
20150202 104614.255 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104614.255 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62008a8

20150202 104614.256 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62007a0

20150202 104614.256 Calling messageArrived for client InFlight, queue depth 0
20150202 104614.256 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104614.256 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104614.256 (3067456320)       (6)> UTF8_validateString:155
20150202 104614.256 (3067456320)        (7)> UTF8_validate:129
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)         (8)> UTF8_char_validate:79
20150202 104614.256 (3067456320)         (8)< UTF8_char_validate:113
20150202 104614.256 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104614.256 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104614.256 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200910

20150202 104614.256 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200b48

20150202 104614.256 (3067456320)       (6)> MQTTStrncpy:736
20150202 104614.256 (3067456320)       (6)< MQTTStrncpy:746
20150202 104614.256 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62005c0

20150202 104614.256 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104614.256 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200780

20150202 104614.256 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104614.256 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104614.256 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104614.256 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104614.256 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104614.256 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104614.256 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104614.256 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104614.256 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104614.257 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104614.257 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104614.257 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104614.257 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104614.257 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104614.257 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104614.257 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104614.257 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104614.257 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104614.257 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104614.257 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104614.257 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104614.257 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104614.257 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104614.257 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104614.257 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104614.257 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104614.257 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104614.257 (3075849024)  (1)> Thread_wait_cond:402
20150202 104614.257 Return code 1 from read select
20150202 104615.258 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104615.258 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104615.258 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104615.258 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104615.258 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104615.258 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104615.258 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104615.258 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104615.258 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104615.258 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104615.258 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104615.258 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104615.258 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104615.258 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104615.258 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104615.258 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104615.258 (3075849024)       (6)> Socket_putdatas:443
20150202 104615.258 (3075849024)        (7)> Socket_writev:399
20150202 104615.258 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104615.258 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104615.260 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104615.260 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104615.260 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104615.260 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104615.260 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104615.260 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104615.260 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104615.260 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104615.260 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104615.260 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104615.260 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104615.260 (3067456320)    (3)> Socket_continueWrites:777
20150202 104615.260 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104615.260 Return code 1 from write select
20150202 104615.260 (3067456320)    (3)> isReady:192
20150202 104615.260 (3067456320)    (3)< isReady:197 (1)
20150202 104615.260 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104615.260 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104615.260 (3067456320)    (3)> Socket_getch:297
20150202 104615.260 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104615.260 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104615.260 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104615.260 queueChar: index is now 1, headerlen 1
20150202 104615.260 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104615.260 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104615.260 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104615.260 (3067456320)     (4)> Socket_getch:297
20150202 104615.260 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104615.260 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104615.260 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104615.260 queueChar: index is now 2, headerlen 2
20150202 104615.260 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104615.260 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104615.260 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104615.260 (3067456320)    (3)> Socket_getdata:336
20150202 104615.260 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104615.260 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104615.260 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104615.260 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104615.260 (3067456320)    (3)< Socket_getdata:370
20150202 104615.261 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200b48

20150202 104615.261 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104615.261 (3075849024)  (1)> Thread_wait_cond:402
20150202 104615.261 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104615.261 (3067456320)     (4)> readUTFlen:352
20150202 104615.261 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62006f8

20150202 104615.261 (3067456320)     (4)< readUTFlen:364
20150202 104615.261 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104615.261 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104615.261 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104615.261 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-51;142
20150202 104615.261 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104615.261 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200658

20150202 104615.261 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a90

20150202 104615.261 Calling messageArrived for client InFlight, queue depth 0
20150202 104615.261 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104615.261 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104615.261 (3067456320)       (6)> UTF8_validateString:155
20150202 104615.261 (3067456320)        (7)> UTF8_validate:129
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104615.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104615.262 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104615.262 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104615.262 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62007a0

20150202 104615.262 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62008a8

20150202 104615.262 (3067456320)       (6)> MQTTStrncpy:736
20150202 104615.262 (3067456320)       (6)< MQTTStrncpy:746
20150202 104615.262 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62005c0

20150202 104615.262 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104615.262 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62009b8

20150202 104615.262 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104615.262 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104615.262 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104615.262 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104615.262 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104615.262 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104615.262 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104615.262 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104615.262 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104615.262 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104615.262 (3075849024)  (1)> Thread_wait_cond:402
20150202 104615.262 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104615.262 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104615.262 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104615.262 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104615.262 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104615.263 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104615.263 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104615.263 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104615.263 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104615.263 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104615.263 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104615.263 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104615.263 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104615.263 Return code 1 from read select
20150202 104615.263 (3067456320)    (3)> Socket_continueWrites:777
20150202 104615.263 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104615.263 Return code 1 from write select
20150202 104615.263 (3067456320)    (3)> isReady:192
20150202 104615.263 (3067456320)    (3)< isReady:197 (1)
20150202 104615.263 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104615.263 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104615.263 (3067456320)    (3)> Socket_getch:297
20150202 104615.263 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104615.263 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104615.263 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104616.260 queueChar: index is now 1, headerlen 1
20150202 104616.260 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104616.260 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104616.260 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104616.260 (3067456320)     (4)> Socket_getch:297
20150202 104616.260 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104616.260 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104616.260 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104616.260 queueChar: index is now 2, headerlen 2
20150202 104616.260 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104616.260 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104616.260 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104616.260 (3067456320)    (3)> Socket_getdata:336
20150202 104616.260 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104616.260 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104616.260 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104616.260 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104616.260 (3067456320)    (3)< Socket_getdata:370
20150202 104616.260 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200b48

20150202 104616.260 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104616.260 (3067456320)     (4)> readUTFlen:352
20150202 104616.260 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62006f8

20150202 104616.260 (3067456320)     (4)< readUTFlen:364
20150202 104616.260 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104616.260 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104616.260 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104616.260 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-52;142
20150202 104616.260 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104616.260 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200658

20150202 104616.260 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200910

20150202 104616.260 Calling messageArrived for client InFlight, queue depth 0
20150202 104616.260 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104616.260 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104616.260 (3067456320)       (6)> UTF8_validateString:155
20150202 104616.260 (3067456320)        (7)> UTF8_validate:129
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.260 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.260 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.261 (3067456320)         (8)> UTF8_char_validate:79
20150202 104616.261 (3067456320)         (8)< UTF8_char_validate:113
20150202 104616.261 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104616.261 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104616.261 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a90

20150202 104616.261 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200820

20150202 104616.261 (3067456320)       (6)> MQTTStrncpy:736
20150202 104616.261 (3067456320)       (6)< MQTTStrncpy:746
20150202 104616.261 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200c18

20150202 104616.261 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104616.261 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200a58

20150202 104616.261 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104616.261 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104616.261 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104616.261 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104616.261 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1312 bytes

20150202 104616.261 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1248 bytes

20150202 104616.261 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104616.261 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104616.261 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1216 bytes

20150202 104616.261 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104616.261 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104616.261 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104616.261 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1184 bytes

20150202 104616.261 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104616.261 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104616.261 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104616.261 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104616.261 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104616.261 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104616.261 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104616.262 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104616.262 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104616.262 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104616.262 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104616.262 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104616.262 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104616.262 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104616.262 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1184 bytes

20150202 104616.262 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1152 bytes

20150202 104616.262 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104616.262 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104616.262 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104616.262 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104616.262 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104616.262 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104616.262 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104616.262 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104616.262 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104616.262 (3075849024)       (6)> Socket_putdatas:443
20150202 104616.262 (3075849024)        (7)> Socket_writev:399
20150202 104616.262 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104616.262 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104616.262 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1200 bytes

20150202 104616.262 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104616.262 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1184 bytes

20150202 104616.262 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104616.262 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104616.262 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104616.262 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104616.262 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1168 bytes

20150202 104616.262 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1136 bytes

20150202 104616.262 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1104 bytes

20150202 104616.262 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1040 bytes

20150202 104616.262 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104616.262 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104616.262 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104616.262 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1008 bytes

20150202 104616.262 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 976 bytes

20150202 104616.262 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104616.262 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104616.262 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104616.262 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104616.262 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104616.262 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104616.262 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104616.262 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104616.262 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104616.262 (3075849024)       (6)> Socket_putdatas:443
20150202 104616.262 (3075849024)        (7)> Socket_writev:399
20150202 104616.262 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104616.262 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104616.262 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1024 bytes

20150202 104616.262 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104616.262 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1008 bytes

20150202 104616.262 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104616.262 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104616.262 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104616.262 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104616.262 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 992 bytes

20150202 104616.262 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 960 bytes

20150202 104616.263 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 928 bytes

20150202 104616.263 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104616.263 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104616.263 (3075849024)  (1)> Thread_wait_cond:402
20150202 104616.263 Return code 1 from read select
20150202 104616.263 (3067456320)    (3)> Socket_continueWrites:777
20150202 104616.263 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104616.263 Return code 1 from write select
20150202 104616.263 (3067456320)    (3)> isReady:192
20150202 104616.263 (3067456320)    (3)< isReady:197 (1)
20150202 104616.263 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104616.263 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104616.263 (3067456320)    (3)> Socket_getch:297
20150202 104616.263 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104616.263 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104616.263 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104616.263 queueChar: index is now 1, headerlen 1
20150202 104616.263 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104616.263 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104616.263 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104617.262 (3067456320)     (4)> Socket_getch:297
20150202 104617.262 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104617.262 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104617.262 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104617.262 queueChar: index is now 2, headerlen 2
20150202 104617.262 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104617.262 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104617.262 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104617.262 (3067456320)    (3)> Socket_getdata:336
20150202 104617.262 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104617.262 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104617.262 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104617.262 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104617.262 (3067456320)    (3)< Socket_getdata:370
20150202 104617.262 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62004a8

20150202 104617.262 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104617.262 (3067456320)     (4)> readUTFlen:352
20150202 104617.262 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200530

20150202 104617.262 (3067456320)     (4)< readUTFlen:364
20150202 104617.262 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104617.262 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104617.262 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104617.262 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-53;142
20150202 104617.262 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104617.262 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005b0

20150202 104617.262 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200630

20150202 104617.262 Calling messageArrived for client InFlight, queue depth 0
20150202 104617.262 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104617.262 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104617.262 (3067456320)       (6)> UTF8_validateString:155
20150202 104617.262 (3067456320)        (7)> UTF8_validate:129
20150202 104617.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.262 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.262 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)         (8)> UTF8_char_validate:79
20150202 104617.263 (3067456320)         (8)< UTF8_char_validate:113
20150202 104617.263 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104617.263 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104617.263 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62006f8

20150202 104617.263 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62007a0

20150202 104617.263 (3067456320)       (6)> MQTTStrncpy:736
20150202 104617.263 (3067456320)       (6)< MQTTStrncpy:746
20150202 104617.263 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200820

20150202 104617.263 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104617.263 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62008c0

20150202 104617.263 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104617.263 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104617.263 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104617.263 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104617.263 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104617.263 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104617.263 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104617.263 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104617.263 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104617.263 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104617.263 (3075849024)  (1)> Thread_wait_cond:402
20150202 104617.263 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104617.263 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104617.263 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104617.263 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104617.263 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104617.263 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104617.263 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104617.263 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104617.263 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104617.263 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104617.263 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104617.263 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104617.263 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104618.264 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104618.264 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104618.264 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104618.264 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104618.264 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104618.264 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104618.264 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104618.264 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104618.264 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104618.264 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104618.264 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104618.264 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104618.264 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104618.264 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104618.264 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104618.264 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104618.264 (3075849024)       (6)> Socket_putdatas:443
20150202 104618.264 (3075849024)        (7)> Socket_writev:399
20150202 104618.264 (3075849024)        (7)< Socket_writev:420 (79)
20150202 104618.264 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104618.264 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104618.264 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104618.264 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104618.264 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104618.264 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104618.264 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104618.264 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104618.264 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104618.264 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104618.264 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104618.264 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104618.264 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104618.264 (3075849024)  (1)> Thread_wait_cond:402
20150202 104618.264 Return code 0 from read select
20150202 104618.264 (3067456320)    (3)> Socket_continueWrites:777
20150202 104618.264 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104618.264 Return code 1 from write select
20150202 104618.264 (3067456320)    (3)> isReady:192
20150202 104618.264 (3067456320)    (3)< isReady:197 (0)
20150202 104618.264 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104618.265 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104618.265 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104618.265 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104618.265 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104618.265 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104618.265 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104618.265 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104618.265 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104618.265 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104618.265 Return code 1 from read select
20150202 104618.265 (3067456320)    (3)> Socket_continueWrites:777
20150202 104618.265 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104618.265 Return code 1 from write select
20150202 104618.265 (3067456320)    (3)> isReady:192
20150202 104618.265 (3067456320)    (3)< isReady:197 (1)
20150202 104618.265 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104618.265 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104618.265 (3067456320)    (3)> Socket_getch:297
20150202 104618.265 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104618.265 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104618.365 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104618.365 queueChar: index is now 1, headerlen 1
20150202 104618.365 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104618.365 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104618.365 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104618.365 (3067456320)     (4)> Socket_getch:297
20150202 104618.365 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104618.365 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104618.365 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104618.365 queueChar: index is now 2, headerlen 2
20150202 104618.365 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104618.365 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104618.365 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104618.365 (3067456320)    (3)> Socket_getdata:336
20150202 104618.365 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104618.365 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104618.365 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104618.365 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104618.365 (3067456320)    (3)< Socket_getdata:370
20150202 104618.365 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62007a0

20150202 104618.365 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104618.365 (3067456320)     (4)> readUTFlen:352
20150202 104618.365 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200530

20150202 104618.365 (3067456320)     (4)< readUTFlen:364
20150202 104618.365 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104618.365 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104618.365 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104618.365 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-54;142
20150202 104618.365 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104618.365 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005b0

20150202 104618.365 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200820

20150202 104618.365 Calling messageArrived for client InFlight, queue depth 0
20150202 104618.365 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104618.365 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104618.365 (3067456320)       (6)> UTF8_validateString:155
20150202 104618.365 (3067456320)        (7)> UTF8_validate:129
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.365 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.365 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.366 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.366 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.366 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.366 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.366 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.366 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.366 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.366 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.366 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.366 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.366 (3067456320)         (8)> UTF8_char_validate:79
20150202 104618.366 (3067456320)         (8)< UTF8_char_validate:113
20150202 104618.366 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104618.366 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104618.366 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62006f8

20150202 104618.366 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200630

20150202 104618.366 (3067456320)       (6)> MQTTStrncpy:736
20150202 104618.366 (3067456320)       (6)< MQTTStrncpy:746
20150202 104618.366 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200900

20150202 104618.366 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104618.366 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200560

20150202 104618.366 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104618.366 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104618.366 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104618.366 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104618.366 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104618.366 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104618.366 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104618.366 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104618.366 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104618.366 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104618.366 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104618.366 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104618.366 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104618.366 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104618.366 (3075849024)  (1)> Thread_wait_cond:402
20150202 104618.366 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104618.366 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104618.366 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104618.366 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104618.366 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104618.366 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104618.366 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104618.366 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104618.366 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104618.366 Return code 1 from read select
20150202 104618.366 (3067456320)    (3)> Socket_continueWrites:777
20150202 104618.366 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104618.366 Return code 1 from write select
20150202 104618.366 (3067456320)    (3)> isReady:192
20150202 104618.366 (3067456320)    (3)< isReady:197 (1)
20150202 104618.366 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104618.366 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104618.366 (3067456320)    (3)> Socket_getch:297
20150202 104618.366 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104618.366 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104618.366 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104618.366 queueChar: index is now 1, headerlen 1
20150202 104618.366 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104618.366 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104619.266 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104619.266 (3067456320)     (4)> Socket_getch:297
20150202 104619.266 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104619.266 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104619.266 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104619.266 queueChar: index is now 2, headerlen 2
20150202 104619.266 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104619.266 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104619.266 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104619.266 (3067456320)    (3)> Socket_getdata:336
20150202 104619.266 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104619.266 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104619.266 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104619.266 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104619.266 (3067456320)    (3)< Socket_getdata:370
20150202 104619.266 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62007a0

20150202 104619.266 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104619.266 (3067456320)     (4)> readUTFlen:352
20150202 104619.266 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200530

20150202 104619.266 (3067456320)     (4)< readUTFlen:364
20150202 104619.266 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104619.266 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104619.266 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104619.266 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-55;142
20150202 104619.266 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104619.266 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005b0

20150202 104619.266 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200820

20150202 104619.266 Calling messageArrived for client InFlight, queue depth 0
20150202 104619.266 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104619.266 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104619.266 (3067456320)       (6)> UTF8_validateString:155
20150202 104619.266 (3067456320)        (7)> UTF8_validate:129
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.266 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.266 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.267 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.267 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.267 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.267 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.267 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.267 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.267 (3067456320)         (8)> UTF8_char_validate:79
20150202 104619.267 (3067456320)         (8)< UTF8_char_validate:113
20150202 104619.267 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104619.267 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104619.267 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200980

20150202 104619.267 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200a08

20150202 104619.267 (3067456320)       (6)> MQTTStrncpy:736
20150202 104619.267 (3067456320)       (6)< MQTTStrncpy:746
20150202 104619.267 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a88

20150202 104619.267 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104619.267 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b28

20150202 104619.267 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104619.267 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104619.267 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104619.267 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104619.267 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104619.267 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104619.267 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104619.267 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104619.267 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104619.267 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104619.267 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104619.267 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104619.267 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104619.267 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104619.267 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104619.267 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104619.267 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104619.267 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104619.267 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104619.267 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104619.267 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104619.267 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104619.267 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104619.268 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104619.268 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104619.268 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104619.268 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104619.268 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104619.268 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104619.268 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104619.268 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104619.268 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104619.268 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104619.268 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104619.268 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104619.268 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104619.268 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104619.268 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104619.268 (3075849024)       (6)> Socket_putdatas:443
20150202 104619.268 (3075849024)        (7)> Socket_writev:399
20150202 104619.268 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104619.268 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104619.268 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104619.269 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104619.269 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104619.269 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104619.269 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104619.269 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104619.269 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104619.269 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104619.269 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104619.269 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104619.269 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104619.269 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104619.269 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104619.269 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104619.269 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104619.269 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104619.269 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104619.269 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104619.269 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104619.269 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104619.269 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104619.269 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104619.269 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104619.269 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104619.269 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104619.269 (3075849024)       (6)> Socket_putdatas:443
20150202 104619.269 (3075849024)        (7)> Socket_writev:399
20150202 104619.269 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104619.269 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104619.269 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104619.269 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104619.269 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104619.269 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104619.269 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104619.269 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104619.269 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104619.269 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104619.269 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104619.269 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104619.269 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104619.269 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104619.269 (3075849024)  (1)> Thread_wait_cond:402
20150202 104619.269 Return code 1 from read select
20150202 104619.269 (3067456320)    (3)> Socket_continueWrites:777
20150202 104619.269 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104619.269 Return code 1 from write select
20150202 104619.269 (3067456320)    (3)> isReady:192
20150202 104619.269 (3067456320)    (3)< isReady:197 (1)
20150202 104619.269 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104619.269 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104619.269 (3067456320)    (3)> Socket_getch:297
20150202 104619.269 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104619.269 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104619.269 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104619.269 queueChar: index is now 1, headerlen 1
20150202 104619.269 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104619.269 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104619.269 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104619.269 (3067456320)     (4)> Socket_getch:297
20150202 104619.269 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104619.269 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104620.269 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104620.269 queueChar: index is now 2, headerlen 2
20150202 104620.269 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104620.269 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104620.269 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104620.269 (3067456320)    (3)> Socket_getdata:336
20150202 104620.269 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104620.269 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104620.269 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104620.269 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104620.269 (3067456320)    (3)< Socket_getdata:370
20150202 104620.269 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a08

20150202 104620.269 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104620.269 (3067456320)     (4)> readUTFlen:352
20150202 104620.269 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200630

20150202 104620.269 (3067456320)     (4)< readUTFlen:364
20150202 104620.269 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104620.269 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104620.269 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104620.269 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-56;142
20150202 104620.269 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104620.269 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007a0

20150202 104620.269 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200820

20150202 104620.269 Calling messageArrived for client InFlight, queue depth 0
20150202 104620.269 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104620.269 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104620.269 (3067456320)       (6)> UTF8_validateString:155
20150202 104620.269 (3067456320)        (7)> UTF8_validate:129
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)         (8)> UTF8_char_validate:79
20150202 104620.269 (3067456320)         (8)< UTF8_char_validate:113
20150202 104620.269 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104620.269 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104620.269 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200900

20150202 104620.269 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200530

20150202 104620.269 (3067456320)       (6)> MQTTStrncpy:736
20150202 104620.269 (3067456320)       (6)< MQTTStrncpy:746
20150202 104620.269 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62006f8

20150202 104620.269 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104620.269 (3075849024)  (1)> Thread_wait_cond:402
20150202 104620.269 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104620.269 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62008c0

20150202 104620.269 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104620.269 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104620.269 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104620.269 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104620.269 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104620.270 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104620.270 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104620.270 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104620.270 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104620.270 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104620.270 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104620.270 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104620.270 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104620.270 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104620.270 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104620.270 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104620.270 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104620.270 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104620.270 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104620.270 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104620.270 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104620.270 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104620.270 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104620.270 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104620.270 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104620.270 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104620.270 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104620.270 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104620.270 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104620.270 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104620.270 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104620.270 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104620.270 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104620.270 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104620.270 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104620.270 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104620.270 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104620.270 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104620.270 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104620.270 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104620.270 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104620.270 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104620.270 (3075849024)       (6)> Socket_putdatas:443
20150202 104620.270 (3075849024)        (7)> Socket_writev:399
20150202 104620.270 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104620.271 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104620.271 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104620.271 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104620.271 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104620.271 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104620.271 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104620.271 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104620.271 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104620.271 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104620.271 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104620.271 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104620.271 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104620.271 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104620.271 (3075849024)  (1)> Thread_wait_cond:402
20150202 104620.271 Return code 0 from read select
20150202 104620.271 (3067456320)    (3)> Socket_continueWrites:777
20150202 104620.271 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104620.271 Return code 1 from write select
20150202 104620.271 (3067456320)    (3)> isReady:192
20150202 104620.271 (3067456320)    (3)< isReady:197 (0)
20150202 104621.272 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104621.272 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104621.272 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104621.272 (3075849024)  (1)> Thread_wait_cond:402
20150202 104621.272 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104621.272 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104621.272 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104621.272 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104621.272 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104621.272 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104621.272 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104621.272 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104621.272 Return code 1 from read select
20150202 104621.272 (3067456320)    (3)> Socket_continueWrites:777
20150202 104621.272 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104621.272 Return code 1 from write select
20150202 104621.272 (3067456320)    (3)> isReady:192
20150202 104621.272 (3067456320)    (3)< isReady:197 (1)
20150202 104621.272 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104621.272 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104621.819 (3067456320)    (3)> Socket_getch:297
20150202 104621.819 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104621.819 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104621.819 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104621.819 queueChar: index is now 1, headerlen 1
20150202 104621.819 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104621.819 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104621.819 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104621.819 (3067456320)     (4)> Socket_getch:297
20150202 104621.819 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104621.819 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104621.819 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104621.819 queueChar: index is now 2, headerlen 2
20150202 104621.819 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104621.819 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104621.819 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104621.819 (3067456320)    (3)> Socket_getdata:336
20150202 104621.819 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104621.819 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104621.819 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104621.820 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104621.820 (3067456320)    (3)< Socket_getdata:370
20150202 104621.820 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200530

20150202 104621.820 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104621.820 (3067456320)     (4)> readUTFlen:352
20150202 104621.820 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200a08

20150202 104621.820 (3067456320)     (4)< readUTFlen:364
20150202 104621.820 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104621.820 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104621.820 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104621.820 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-57;142
20150202 104621.820 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104621.820 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200630

20150202 104621.820 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a88

20150202 104621.820 Calling messageArrived for client InFlight, queue depth 0
20150202 104621.820 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104621.820 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104621.820 (3067456320)       (6)> UTF8_validateString:155
20150202 104621.820 (3067456320)        (7)> UTF8_validate:129
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)         (8)> UTF8_char_validate:79
20150202 104621.820 (3067456320)         (8)< UTF8_char_validate:113
20150202 104621.820 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104621.820 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104621.820 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200980

20150202 104621.820 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62007a0

20150202 104621.820 (3067456320)       (6)> MQTTStrncpy:736
20150202 104621.820 (3067456320)       (6)< MQTTStrncpy:746
20150202 104621.820 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200820

20150202 104621.820 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104621.820 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200a38

20150202 104621.820 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104621.820 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104621.820 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104621.820 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104621.820 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104621.820 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104621.820 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104621.820 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104621.820 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104621.820 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104621.820 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104621.820 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104621.820 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104621.820 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104621.820 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104621.820 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104621.821 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104621.821 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104621.821 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104621.821 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104621.821 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104621.821 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104621.821 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104621.821 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104621.821 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104621.821 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104621.821 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104621.821 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104621.821 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104621.821 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104621.821 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104621.821 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104621.821 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104621.821 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104621.821 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104621.821 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104621.821 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104621.821 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104621.821 (3075849024)       (6)> Socket_putdatas:443
20150202 104621.821 (3075849024)        (7)> Socket_writev:399
20150202 104621.821 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104621.821 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104621.821 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104621.821 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104621.821 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104621.821 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104621.821 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104621.821 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104621.821 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104621.821 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104621.821 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104621.821 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104621.821 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104621.821 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104621.821 (3075849024)  (1)> Thread_wait_cond:402
20150202 104621.821 Return code 1 from read select
20150202 104622.273 (3067456320)    (3)> Socket_continueWrites:777
20150202 104622.273 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104622.273 Return code 1 from write select
20150202 104622.273 (3067456320)    (3)> isReady:192
20150202 104622.273 (3067456320)    (3)< isReady:197 (1)
20150202 104622.273 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104622.273 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104622.273 (3067456320)    (3)> Socket_getch:297
20150202 104622.273 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104622.273 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104622.273 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104622.273 queueChar: index is now 1, headerlen 1
20150202 104622.273 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104622.273 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104622.273 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104622.273 (3067456320)     (4)> Socket_getch:297
20150202 104622.273 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104622.273 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104622.273 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104622.273 queueChar: index is now 2, headerlen 2
20150202 104622.273 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104622.273 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104622.273 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104622.273 (3067456320)    (3)> Socket_getdata:336
20150202 104622.273 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104622.273 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104622.273 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104622.273 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104622.273 (3067456320)    (3)< Socket_getdata:370
20150202 104622.273 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62007a0

20150202 104622.273 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104622.273 (3067456320)     (4)> readUTFlen:352
20150202 104622.273 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200530

20150202 104622.273 (3067456320)     (4)< readUTFlen:364
20150202 104622.273 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104622.273 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104622.273 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104622.273 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-58;142
20150202 104622.273 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104622.273 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200a08

20150202 104622.274 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f8

20150202 104622.274 Calling messageArrived for client InFlight, queue depth 0
20150202 104622.274 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104622.274 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104622.274 (3067456320)       (6)> UTF8_validateString:155
20150202 104622.274 (3067456320)        (7)> UTF8_validate:129
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)         (8)> UTF8_char_validate:79
20150202 104622.274 (3067456320)         (8)< UTF8_char_validate:113
20150202 104622.274 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104622.274 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104622.274 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200900

20150202 104622.274 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200630

20150202 104622.274 (3067456320)       (6)> MQTTStrncpy:736
20150202 104622.274 (3067456320)       (6)< MQTTStrncpy:746
20150202 104622.274 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a88

20150202 104622.274 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104622.274 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62006a8

20150202 104622.274 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104622.274 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104622.274 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104622.274 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104622.274 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104622.274 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104622.274 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104622.274 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104622.274 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104622.275 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104622.275 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104622.275 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104622.275 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104622.275 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104622.275 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104622.275 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104622.275 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104622.275 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104622.275 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104622.275 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104622.275 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104622.275 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104622.275 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104622.275 (3075849024)  (1)> Thread_wait_cond:402
20150202 104622.275 Return code 1 from read select
20150202 104622.275 (3067456320)    (3)> Socket_continueWrites:777
20150202 104622.275 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104622.275 Return code 1 from write select
20150202 104622.275 (3067456320)    (3)> isReady:192
20150202 104623.275 (3067456320)    (3)< isReady:197 (1)
20150202 104623.275 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104623.275 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104623.275 (3067456320)    (3)> Socket_getch:297
20150202 104623.275 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104623.275 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104623.275 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104623.275 queueChar: index is now 1, headerlen 1
20150202 104623.275 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104623.275 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104623.275 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104623.275 (3067456320)     (4)> Socket_getch:297
20150202 104623.275 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104623.275 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104623.275 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104623.275 queueChar: index is now 2, headerlen 2
20150202 104623.275 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104623.275 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104623.275 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104623.275 (3067456320)    (3)> Socket_getdata:336
20150202 104623.275 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104623.275 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104623.275 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104623.275 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104623.275 (3067456320)    (3)< Socket_getdata:370
20150202 104623.275 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62007a0

20150202 104623.275 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104623.275 (3067456320)     (4)> readUTFlen:352
20150202 104623.275 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200530

20150202 104623.275 (3067456320)     (4)< readUTFlen:364
20150202 104623.275 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104623.275 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104623.275 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104623.275 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-59;142
20150202 104623.275 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104623.275 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104623.275 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104623.275 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104623.275 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104623.275 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200a08

20150202 104623.276 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200820

20150202 104623.276 Calling messageArrived for client InFlight, queue depth 0
20150202 104623.276 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104623.276 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104623.276 (3067456320)       (6)> UTF8_validateString:155
20150202 104623.276 (3067456320)        (7)> UTF8_validate:129
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104623.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104623.276 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104623.276 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104623.276 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200980

20150202 104623.276 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005b0

20150202 104623.276 (3067456320)       (6)> MQTTStrncpy:736
20150202 104623.276 (3067456320)       (6)< MQTTStrncpy:746
20150202 104623.276 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62006f8

20150202 104623.276 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104623.276 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62007d0

20150202 104623.276 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104623.276 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104623.276 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104623.276 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104623.276 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104623.276 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104623.276 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104623.276 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104623.276 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104623.276 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104623.276 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104623.276 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104623.276 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104623.276 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104623.276 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104623.276 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104623.276 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104623.276 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104623.276 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104623.276 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104623.276 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104623.276 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104623.276 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104623.276 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104623.276 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104623.276 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104623.276 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104623.276 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104623.276 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104623.277 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104623.277 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104623.277 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104623.277 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104623.277 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104623.277 (3075849024)       (6)> Socket_putdatas:443
20150202 104623.277 (3075849024)        (7)> Socket_writev:399
20150202 104623.277 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104623.277 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104623.277 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104623.277 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104623.277 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104623.277 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104623.277 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104623.277 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104623.277 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104623.277 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104623.277 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104623.277 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104623.277 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104623.277 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104623.277 (3075849024)  (1)> Thread_wait_cond:402
20150202 104623.277 Return code 1 from read select
20150202 104623.277 (3067456320)    (3)> Socket_continueWrites:777
20150202 104623.277 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104623.277 Return code 1 from write select
20150202 104623.277 (3067456320)    (3)> isReady:192
20150202 104623.277 (3067456320)    (3)< isReady:197 (1)
20150202 104623.277 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104623.277 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104623.277 (3067456320)    (3)> Socket_getch:297
20150202 104623.277 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104623.277 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104623.277 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104623.277 queueChar: index is now 1, headerlen 1
20150202 104623.277 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104623.277 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104623.277 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104623.277 (3067456320)     (4)> Socket_getch:297
20150202 104623.277 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104624.275 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104624.275 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104624.275 queueChar: index is now 2, headerlen 2
20150202 104624.275 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104624.275 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104624.275 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104624.275 (3067456320)    (3)> Socket_getdata:336
20150202 104624.275 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104624.275 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104624.275 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104624.275 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104624.275 (3067456320)    (3)< Socket_getdata:370
20150202 104624.275 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200630

20150202 104624.275 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104624.275 (3067456320)     (4)> readUTFlen:352
20150202 104624.275 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62007a0

20150202 104624.275 (3067456320)     (4)< readUTFlen:364
20150202 104624.275 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104624.275 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104624.275 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104624.276 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-60;142
20150202 104624.276 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104624.276 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200530

20150202 104624.276 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200820

20150202 104624.276 Calling messageArrived for client InFlight, queue depth 0
20150202 104624.276 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104624.276 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104624.276 (3067456320)       (6)> UTF8_validateString:155
20150202 104624.276 (3067456320)        (7)> UTF8_validate:129
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)         (8)> UTF8_char_validate:79
20150202 104624.276 (3067456320)         (8)< UTF8_char_validate:113
20150202 104624.276 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104624.276 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104624.276 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a88

20150202 104624.276 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200a08

20150202 104624.276 (3067456320)       (6)> MQTTStrncpy:736
20150202 104624.276 (3067456320)       (6)< MQTTStrncpy:746
20150202 104624.276 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200900

20150202 104624.276 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104624.276 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200488

20150202 104624.276 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104624.276 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104624.276 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104624.276 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104624.276 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104624.276 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104624.276 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104624.276 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104624.276 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104624.276 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104624.276 (3075849024)  (1)> Thread_wait_cond:402
20150202 104624.276 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104624.276 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104624.276 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104624.276 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104624.276 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104624.276 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104624.276 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104624.276 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104624.276 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104624.276 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104624.276 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104624.276 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104624.276 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104624.276 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104624.276 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104625.277 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104625.277 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104625.277 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104625.277 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104625.277 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104625.277 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104625.277 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104625.277 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104625.277 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104625.277 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104625.277 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104625.277 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104625.277 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104625.277 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104625.277 (3075849024)       (6)> Socket_putdatas:443
20150202 104625.277 (3075849024)        (7)> Socket_writev:399
20150202 104625.277 Return code 0 from read select
20150202 104625.277 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104625.277 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104625.277 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104625.283 (3067456320)    (3)> Socket_continueWrites:777
20150202 104625.283 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104625.283 Return code 1 from write select
20150202 104625.283 (3067456320)    (3)> isReady:192
20150202 104625.283 (3067456320)    (3)< isReady:197 (0)
20150202 104625.283 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104625.283 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104625.283 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104625.283 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104625.283 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104625.283 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104625.283 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104625.283 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104625.283 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104625.283 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104625.283 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104625.283 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104625.283 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104625.283 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104625.283 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104625.284 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104625.284 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104625.284 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104625.284 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104625.284 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104625.284 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104625.284 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104625.284 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104625.284 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104625.284 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104625.284 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104625.284 (3075849024)       (6)> Socket_putdatas:443
20150202 104625.284 (3075849024)        (7)> Socket_writev:399
20150202 104625.284 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104625.284 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104625.284 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104625.284 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104625.284 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104625.284 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104625.284 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104625.285 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104625.285 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104625.285 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104625.285 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104625.285 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104625.285 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104625.285 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104625.285 (3075849024)  (1)> Thread_wait_cond:402
20150202 104625.285 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104625.285 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104625.285 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104625.285 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104625.285 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104625.285 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104625.285 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104625.285 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104625.285 Return code 1 from read select
20150202 104625.285 (3067456320)    (3)> Socket_continueWrites:777
20150202 104625.285 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104625.285 Return code 1 from write select
20150202 104625.385 (3067456320)    (3)> isReady:192
20150202 104625.385 (3067456320)    (3)< isReady:197 (1)
20150202 104625.385 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104625.385 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104625.385 (3067456320)    (3)> Socket_getch:297
20150202 104625.385 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104625.385 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104625.385 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104625.385 queueChar: index is now 1, headerlen 1
20150202 104625.385 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104625.385 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104625.385 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104625.385 (3067456320)     (4)> Socket_getch:297
20150202 104625.385 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104625.385 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104625.385 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104625.385 queueChar: index is now 2, headerlen 2
20150202 104625.385 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104625.385 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104625.385 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104625.385 (3067456320)    (3)> Socket_getdata:336
20150202 104625.385 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104625.385 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104625.385 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104625.385 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104625.385 (3067456320)    (3)< Socket_getdata:370
20150202 104625.385 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a08

20150202 104625.385 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104625.385 (3067456320)     (4)> readUTFlen:352
20150202 104625.385 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005b0

20150202 104625.385 (3067456320)     (4)< readUTFlen:364
20150202 104625.385 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104625.385 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104625.385 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104625.385 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-61;142
20150202 104625.385 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104625.385 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200630

20150202 104625.385 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200820

20150202 104625.385 Calling messageArrived for client InFlight, queue depth 0
20150202 104625.385 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104625.385 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104625.385 (3067456320)       (6)> UTF8_validateString:155
20150202 104625.385 (3067456320)        (7)> UTF8_validate:129
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)         (8)> UTF8_char_validate:79
20150202 104625.385 (3067456320)         (8)< UTF8_char_validate:113
20150202 104625.385 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104625.385 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104625.385 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62006f8

20150202 104625.385 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62007a0

20150202 104625.385 (3067456320)       (6)> MQTTStrncpy:736
20150202 104625.385 (3067456320)       (6)< MQTTStrncpy:746
20150202 104625.385 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200980

20150202 104625.385 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104625.385 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200688

20150202 104625.385 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104625.385 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104625.385 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104625.385 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104625.385 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104625.385 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104625.385 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104625.385 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104625.385 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104625.385 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104625.385 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104625.385 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104625.386 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104625.386 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104625.386 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104625.386 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104625.386 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104625.386 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104625.386 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104625.386 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104625.386 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104625.386 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104625.386 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104625.386 (3075849024)  (1)> Thread_wait_cond:402
20150202 104625.386 Return code 1 from read select
20150202 104625.386 (3067456320)    (3)> Socket_continueWrites:777
20150202 104625.386 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104625.386 Return code 1 from write select
20150202 104625.386 (3067456320)    (3)> isReady:192
20150202 104625.386 (3067456320)    (3)< isReady:197 (1)
20150202 104625.386 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104625.386 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104626.280 (3067456320)    (3)> Socket_getch:297
20150202 104626.280 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104626.280 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104626.280 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104626.280 queueChar: index is now 1, headerlen 1
20150202 104626.280 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104626.280 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104626.280 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104626.280 (3067456320)     (4)> Socket_getch:297
20150202 104626.280 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104626.280 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104626.280 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104626.280 queueChar: index is now 2, headerlen 2
20150202 104626.280 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104626.280 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104626.280 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104626.280 (3067456320)    (3)> Socket_getdata:336
20150202 104626.280 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104626.280 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104626.280 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104626.280 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104626.280 (3067456320)    (3)< Socket_getdata:370
20150202 104626.280 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a08

20150202 104626.280 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104626.280 (3067456320)     (4)> readUTFlen:352
20150202 104626.280 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005b0

20150202 104626.280 (3067456320)     (4)< readUTFlen:364
20150202 104626.280 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104626.280 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104626.280 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104626.280 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-62;142
20150202 104626.280 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104626.280 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200630

20150202 104626.280 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200900

20150202 104626.280 Calling messageArrived for client InFlight, queue depth 0
20150202 104626.280 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104626.280 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104626.280 (3067456320)       (6)> UTF8_validateString:155
20150202 104626.280 (3067456320)        (7)> UTF8_validate:129
20150202 104626.280 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)         (8)> UTF8_char_validate:79
20150202 104626.281 (3067456320)         (8)< UTF8_char_validate:113
20150202 104626.281 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104626.281 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104626.281 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a88

20150202 104626.281 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200530

20150202 104626.281 (3067456320)       (6)> MQTTStrncpy:736
20150202 104626.281 (3067456320)       (6)< MQTTStrncpy:746
20150202 104626.281 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b68

20150202 104626.281 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104626.281 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62005e0

20150202 104626.281 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104626.281 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104626.281 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104626.281 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104626.281 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1312 bytes

20150202 104626.281 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1248 bytes

20150202 104626.281 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104626.281 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104626.281 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1216 bytes

20150202 104626.281 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104626.281 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104626.281 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104626.281 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1184 bytes

20150202 104626.281 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104626.281 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104626.281 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104626.282 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104626.282 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104626.282 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104626.282 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104626.282 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104626.282 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104626.282 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104626.282 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104626.282 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104626.282 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104626.282 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104626.282 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104626.282 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104626.282 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104626.282 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104626.282 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1184 bytes

20150202 104626.282 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1152 bytes

20150202 104626.282 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104626.282 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104626.282 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104626.282 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104626.282 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104626.282 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104626.282 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104626.282 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104626.282 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104626.282 (3075849024)       (6)> Socket_putdatas:443
20150202 104626.282 (3075849024)        (7)> Socket_writev:399
20150202 104626.282 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104626.282 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104626.282 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1200 bytes

20150202 104626.282 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104626.282 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1184 bytes

20150202 104626.282 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104626.282 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104626.282 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104626.282 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104626.282 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1168 bytes

20150202 104626.282 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1136 bytes

20150202 104626.282 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1104 bytes

20150202 104626.283 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1040 bytes

20150202 104626.283 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104626.283 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104626.283 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104626.283 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1008 bytes

20150202 104626.283 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 976 bytes

20150202 104626.283 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104626.283 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104626.283 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104626.283 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104626.283 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104626.283 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104626.283 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104626.283 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104626.283 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104626.283 (3075849024)       (6)> Socket_putdatas:443
20150202 104626.283 (3075849024)        (7)> Socket_writev:399
20150202 104626.283 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104626.283 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104626.283 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1024 bytes

20150202 104626.284 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104626.284 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1008 bytes

20150202 104626.284 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104626.284 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104626.284 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104626.284 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104626.284 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 992 bytes

20150202 104626.284 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 960 bytes

20150202 104626.284 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 928 bytes

20150202 104626.284 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104626.284 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104626.284 (3075849024)  (1)> Thread_wait_cond:402
20150202 104626.284 Return code 0 from read select
20150202 104626.284 (3067456320)    (3)> Socket_continueWrites:777
20150202 104626.284 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104626.284 Return code 1 from write select
20150202 104626.284 (3067456320)    (3)> isReady:192
20150202 104626.284 (3067456320)    (3)< isReady:197 (0)
20150202 104626.284 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104626.284 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104627.286 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104627.286 (3075849024)  (1)> Thread_wait_cond:402
20150202 104627.286 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104627.286 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104627.286 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104627.286 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104627.286 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104627.286 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104627.286 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104627.286 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104627.286 Return code 1 from read select
20150202 104627.286 (3067456320)    (3)> Socket_continueWrites:777
20150202 104627.286 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104627.286 Return code 1 from write select
20150202 104627.286 (3067456320)    (3)> isReady:192
20150202 104627.286 (3067456320)    (3)< isReady:197 (1)
20150202 104627.286 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104627.286 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104627.286 (3067456320)    (3)> Socket_getch:297
20150202 104627.286 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104627.384 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104627.384 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104627.384 queueChar: index is now 1, headerlen 1
20150202 104627.384 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104627.384 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104627.384 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104627.384 (3067456320)     (4)> Socket_getch:297
20150202 104627.384 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104627.384 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104627.384 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104627.384 queueChar: index is now 2, headerlen 2
20150202 104627.384 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104627.384 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104627.384 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104627.384 (3067456320)    (3)> Socket_getdata:336
20150202 104627.384 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104627.384 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104627.384 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104627.384 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104627.384 (3067456320)    (3)< Socket_getdata:370
20150202 104627.384 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200530

20150202 104627.384 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104627.384 (3067456320)     (4)> readUTFlen:352
20150202 104627.384 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62007a0

20150202 104627.384 (3067456320)     (4)< readUTFlen:364
20150202 104627.384 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104627.384 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104627.384 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104627.384 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-63;142
20150202 104627.384 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104627.384 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200a08

20150202 104627.384 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200820

20150202 104627.384 Calling messageArrived for client InFlight, queue depth 0
20150202 104627.384 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104627.384 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104627.384 (3067456320)       (6)> UTF8_validateString:155
20150202 104627.384 (3067456320)        (7)> UTF8_validate:129
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)         (8)> UTF8_char_validate:79
20150202 104627.384 (3067456320)         (8)< UTF8_char_validate:113
20150202 104627.384 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104627.384 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104627.384 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200900

20150202 104627.384 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005b0

20150202 104627.384 (3067456320)       (6)> MQTTStrncpy:736
20150202 104627.384 (3067456320)       (6)< MQTTStrncpy:746
20150202 104627.384 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200980

20150202 104627.384 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104627.384 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b28

20150202 104627.384 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104627.384 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104627.384 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104627.384 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104627.384 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104627.384 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104627.384 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104627.384 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104627.384 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104627.384 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104627.384 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104627.384 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104627.384 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104627.384 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104627.384 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104627.384 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104627.384 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104627.384 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104627.385 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104627.385 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104627.385 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104627.385 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104627.385 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104627.385 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104627.385 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104627.385 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104627.385 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104627.385 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104627.385 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104627.385 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104627.385 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104627.385 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104627.385 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104627.385 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104627.385 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104627.385 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104627.385 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104627.385 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104627.385 (3075849024)       (6)> Socket_putdatas:443
20150202 104627.385 (3075849024)        (7)> Socket_writev:399
20150202 104627.385 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104627.385 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104627.385 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104627.385 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104627.385 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104627.385 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104627.385 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104627.385 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104627.385 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104627.385 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104627.385 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104627.385 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104627.385 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104627.385 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104627.385 (3075849024)  (1)> Thread_wait_cond:402
20150202 104627.385 Return code 1 from read select
20150202 104627.385 (3067456320)    (3)> Socket_continueWrites:777
20150202 104627.385 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104628.287 Return code 1 from write select
20150202 104628.287 (3067456320)    (3)> isReady:192
20150202 104628.287 (3067456320)    (3)< isReady:197 (1)
20150202 104628.287 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104628.287 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104628.287 (3067456320)    (3)> Socket_getch:297
20150202 104628.287 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104628.287 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104628.287 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104628.287 queueChar: index is now 1, headerlen 1
20150202 104628.287 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104628.287 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104628.287 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104628.287 (3067456320)     (4)> Socket_getch:297
20150202 104628.287 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104628.287 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104628.287 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104628.287 queueChar: index is now 2, headerlen 2
20150202 104628.287 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104628.287 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104628.287 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104628.287 (3067456320)    (3)> Socket_getdata:336
20150202 104628.287 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104628.287 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104628.287 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104628.287 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104628.287 (3067456320)    (3)< Socket_getdata:370
20150202 104628.287 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005b0

20150202 104628.287 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104628.287 (3067456320)     (4)> readUTFlen:352
20150202 104628.287 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200530

20150202 104628.287 (3067456320)     (4)< readUTFlen:364
20150202 104628.287 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104628.287 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104628.287 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104628.287 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-64;142
20150202 104628.287 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104628.287 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007a0

20150202 104628.287 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f8

20150202 104628.287 Calling messageArrived for client InFlight, queue depth 0
20150202 104628.287 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104628.287 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104628.287 (3067456320)       (6)> UTF8_validateString:155
20150202 104628.287 (3067456320)        (7)> UTF8_validate:129
20150202 104628.287 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.287 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.287 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.287 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.287 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.287 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.287 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.287 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.287 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.287 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.287 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.287 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.287 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.287 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.287 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.287 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)         (8)> UTF8_char_validate:79
20150202 104628.288 (3067456320)         (8)< UTF8_char_validate:113
20150202 104628.288 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104628.288 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104628.288 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a88

20150202 104628.288 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200a08

20150202 104628.288 (3067456320)       (6)> MQTTStrncpy:736
20150202 104628.288 (3067456320)       (6)< MQTTStrncpy:746
20150202 104628.288 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200820

20150202 104628.288 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104628.288 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200560

20150202 104628.288 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104628.288 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104628.288 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104628.288 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104628.288 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104628.288 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104628.288 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104628.288 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104628.288 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104628.288 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104628.288 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104628.288 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104628.288 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104628.288 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104628.288 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104628.288 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104628.288 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104628.288 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104628.288 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104628.288 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104628.288 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104628.288 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104628.288 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104628.288 (3075849024)  (1)> Thread_wait_cond:402
20150202 104628.288 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104628.288 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104628.288 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104628.288 Return code 1 from read select
20150202 104628.288 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104628.288 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104628.288 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104629.290 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104629.290 (3067456320)    (3)> Socket_continueWrites:777
20150202 104629.290 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104629.290 Return code 1 from write select
20150202 104629.290 (3067456320)    (3)> isReady:192
20150202 104629.290 (3067456320)    (3)< isReady:197 (1)
20150202 104629.290 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104629.290 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104629.290 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104629.290 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104629.290 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104629.290 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104629.290 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104629.290 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104629.290 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104629.290 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104629.290 (3075849024)       (6)> Socket_putdatas:443
20150202 104629.290 (3075849024)        (7)> Socket_writev:399
20150202 104629.290 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104629.290 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104629.290 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104629.290 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104629.290 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104629.290 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104629.290 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104629.290 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104629.290 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104629.290 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104629.290 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104629.290 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104629.290 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104629.290 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104629.290 (3075849024)  (1)> Thread_wait_cond:402
20150202 104629.290 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104629.290 (3067456320)    (3)> Socket_getch:297
20150202 104629.290 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104629.290 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104629.290 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104629.290 queueChar: index is now 1, headerlen 1
20150202 104629.290 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104629.291 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104629.291 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104629.291 (3067456320)     (4)> Socket_getch:297
20150202 104629.291 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104629.291 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104629.291 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104629.291 queueChar: index is now 2, headerlen 2
20150202 104629.291 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104629.291 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104629.291 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104629.291 (3067456320)    (3)> Socket_getdata:336
20150202 104629.291 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104629.291 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104629.291 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104629.291 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104629.291 (3067456320)    (3)< Socket_getdata:370
20150202 104629.291 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a08

20150202 104629.291 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104629.291 (3067456320)     (4)> readUTFlen:352
20150202 104629.291 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005b0

20150202 104629.291 (3067456320)     (4)< readUTFlen:364
20150202 104629.291 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104629.291 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104629.291 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104629.291 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-65;142
20150202 104629.291 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104629.291 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200530

20150202 104629.291 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200980

20150202 104629.291 Calling messageArrived for client InFlight, queue depth 0
20150202 104629.291 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104629.291 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104629.291 (3067456320)       (6)> UTF8_validateString:155
20150202 104629.291 (3067456320)        (7)> UTF8_validate:129
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104629.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104629.292 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104629.292 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104629.292 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200900

20150202 104629.292 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62007a0

20150202 104629.292 (3067456320)       (6)> MQTTStrncpy:736
20150202 104629.292 (3067456320)       (6)< MQTTStrncpy:746
20150202 104629.292 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b68

20150202 104629.292 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104629.292 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200a38

20150202 104629.292 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104629.292 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104629.292 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104629.292 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104629.292 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1136 bytes

20150202 104629.292 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1072 bytes

20150202 104629.292 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104629.292 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104629.292 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1040 bytes

20150202 104629.292 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104629.292 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104629.292 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104629.292 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1008 bytes

20150202 104629.292 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104629.292 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104629.292 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104629.292 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104629.292 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104629.292 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104629.292 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104629.292 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104629.292 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104629.292 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104629.292 (3075849024)  (1)> Thread_wait_cond:402
20150202 104629.292 Return code 1 from read select
20150202 104629.292 (3067456320)    (3)> Socket_continueWrites:777
20150202 104629.292 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104629.292 Return code 1 from write select
20150202 104629.292 (3067456320)    (3)> isReady:192
20150202 104629.292 (3067456320)    (3)< isReady:197 (1)
20150202 104629.292 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104629.292 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104629.292 (3067456320)    (3)> Socket_getch:297
20150202 104629.292 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104629.292 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104629.292 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104629.292 queueChar: index is now 1, headerlen 1
20150202 104629.292 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104629.292 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104629.292 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104629.292 (3067456320)     (4)> Socket_getch:297
20150202 104629.292 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104630.291 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104630.291 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104630.291 queueChar: index is now 2, headerlen 2
20150202 104630.291 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104630.291 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104630.291 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104630.291 (3067456320)    (3)> Socket_getdata:336
20150202 104630.291 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104630.291 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104630.291 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104630.291 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104630.291 (3067456320)    (3)< Socket_getdata:370
20150202 104630.291 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a08

20150202 104630.291 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104630.291 (3067456320)     (4)> readUTFlen:352
20150202 104630.291 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005b0

20150202 104630.291 (3067456320)     (4)< readUTFlen:364
20150202 104630.291 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104630.291 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104630.291 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104630.291 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-66;142
20150202 104630.291 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104630.291 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200530

20150202 104630.291 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f8

20150202 104630.291 Calling messageArrived for client InFlight, queue depth 0
20150202 104630.291 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104630.291 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104630.291 (3067456320)       (6)> UTF8_validateString:155
20150202 104630.291 (3067456320)        (7)> UTF8_validate:129
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)         (8)> UTF8_char_validate:79
20150202 104630.291 (3067456320)         (8)< UTF8_char_validate:113
20150202 104630.291 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104630.291 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104630.291 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200820

20150202 104630.291 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200630

20150202 104630.291 (3067456320)       (6)> MQTTStrncpy:736
20150202 104630.291 (3067456320)       (6)< MQTTStrncpy:746
20150202 104630.291 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a88

20150202 104630.291 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104630.291 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200780

20150202 104630.291 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104630.291 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104630.291 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104630.291 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104630.291 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1312 bytes

20150202 104630.291 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1248 bytes

20150202 104630.292 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104630.292 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104630.292 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1216 bytes

20150202 104630.292 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104630.292 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104630.292 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104630.292 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1184 bytes

20150202 104630.292 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104630.292 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104630.292 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104630.292 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104630.292 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104630.292 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104630.292 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104630.292 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104630.292 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104630.292 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104630.292 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104630.292 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104630.292 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104630.292 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104630.292 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1184 bytes

20150202 104630.292 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1152 bytes

20150202 104630.292 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104630.292 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104630.292 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104630.292 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104630.292 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104630.292 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104630.292 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104630.292 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104630.292 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104630.292 (3075849024)       (6)> Socket_putdatas:443
20150202 104630.292 (3075849024)        (7)> Socket_writev:399
20150202 104630.292 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104630.292 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104630.292 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1200 bytes

20150202 104630.292 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104630.292 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1184 bytes

20150202 104630.292 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104630.293 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104630.293 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104630.293 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104630.293 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1168 bytes

20150202 104630.293 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1136 bytes

20150202 104630.293 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1104 bytes

20150202 104630.293 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104630.293 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104630.293 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104630.293 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104630.293 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104630.293 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104630.293 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104630.293 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104630.293 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104630.293 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104630.293 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104630.293 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104630.293 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104630.293 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104630.294 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104630.294 (3075849024)       (6)> Socket_putdatas:443
20150202 104630.294 (3075849024)        (7)> Socket_writev:399
20150202 104630.294 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104630.294 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104630.294 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104630.294 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104630.294 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104630.294 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104630.294 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104630.294 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104630.294 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104630.294 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104630.294 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104630.294 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104630.294 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104630.294 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104630.294 (3075849024)  (1)> Thread_wait_cond:402
20150202 104630.294 Return code 1 from read select
20150202 104630.294 (3067456320)    (3)> Socket_continueWrites:777
20150202 104631.291 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104631.291 Return code 1 from write select
20150202 104631.291 (3067456320)    (3)> isReady:192
20150202 104631.291 (3067456320)    (3)< isReady:197 (1)
20150202 104631.291 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104631.291 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104631.291 (3067456320)    (3)> Socket_getch:297
20150202 104631.291 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104631.291 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104631.291 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104631.291 queueChar: index is now 1, headerlen 1
20150202 104631.291 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104631.291 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104631.291 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104631.291 (3067456320)     (4)> Socket_getch:297
20150202 104631.291 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104631.291 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104631.291 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104631.291 queueChar: index is now 2, headerlen 2
20150202 104631.291 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104631.291 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104631.291 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104631.291 (3067456320)    (3)> Socket_getdata:336
20150202 104631.291 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104631.291 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104631.291 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104631.291 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104631.291 (3067456320)    (3)< Socket_getdata:370
20150202 104631.291 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200630

20150202 104631.291 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104631.291 (3067456320)     (4)> readUTFlen:352
20150202 104631.291 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62007a0

20150202 104631.291 (3067456320)     (4)< readUTFlen:364
20150202 104631.291 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104631.291 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104631.291 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104631.291 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-67;142
20150202 104631.291 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104631.291 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200a08

20150202 104631.291 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200980

20150202 104631.292 Calling messageArrived for client InFlight, queue depth 0
20150202 104631.292 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104631.292 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104631.292 (3067456320)       (6)> UTF8_validateString:155
20150202 104631.292 (3067456320)        (7)> UTF8_validate:129
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)         (8)> UTF8_char_validate:79
20150202 104631.292 (3067456320)         (8)< UTF8_char_validate:113
20150202 104631.292 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104631.292 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104631.292 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62006f8

20150202 104631.292 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005b0

20150202 104631.292 (3067456320)       (6)> MQTTStrncpy:736
20150202 104631.292 (3067456320)       (6)< MQTTStrncpy:746
20150202 104631.292 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b68

20150202 104631.292 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104631.292 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200688

20150202 104631.292 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104631.292 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104631.292 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104631.292 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104631.292 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1136 bytes

20150202 104631.292 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1072 bytes

20150202 104631.292 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104631.292 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104631.292 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1040 bytes

20150202 104631.292 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104631.293 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104631.293 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104631.293 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1008 bytes

20150202 104631.293 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104631.293 (3075849024)  (1)> Thread_wait_cond:402
20150202 104631.293 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104631.293 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104631.293 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104631.293 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104631.293 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104631.293 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104631.293 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104631.293 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104631.293 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104631.293 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104631.293 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104631.293 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104631.293 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104631.293 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104631.293 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1008 bytes

20150202 104632.293 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 976 bytes

20150202 104632.293 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104632.293 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104632.293 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104632.293 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104632.293 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104632.293 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104632.293 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104632.293 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104632.293 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104632.293 (3075849024)       (6)> Socket_putdatas:443
20150202 104632.293 (3075849024)        (7)> Socket_writev:399
20150202 104632.293 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104632.293 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104632.293 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1024 bytes

20150202 104632.293 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104632.293 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1008 bytes

20150202 104632.293 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104632.293 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104632.293 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104632.294 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104632.294 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 992 bytes

20150202 104632.294 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 960 bytes

20150202 104632.294 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 928 bytes

20150202 104632.294 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104632.294 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104632.294 (3075849024)  (1)> Thread_wait_cond:402
20150202 104632.294 Return code 1 from read select
20150202 104632.294 (3067456320)    (3)> Socket_continueWrites:777
20150202 104632.294 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104632.294 Return code 1 from write select
20150202 104632.294 (3067456320)    (3)> isReady:192
20150202 104632.294 (3067456320)    (3)< isReady:197 (1)
20150202 104632.294 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104632.294 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104632.294 (3067456320)    (3)> Socket_getch:297
20150202 104632.294 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104632.294 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104632.294 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104632.294 queueChar: index is now 1, headerlen 1
20150202 104632.295 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104632.295 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104632.295 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104632.295 (3067456320)     (4)> Socket_getch:297
20150202 104632.295 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104632.295 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104632.295 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104632.295 queueChar: index is now 2, headerlen 2
20150202 104632.295 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104632.295 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104632.295 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104632.295 (3067456320)    (3)> Socket_getdata:336
20150202 104632.295 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104632.295 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104632.295 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104632.295 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104632.295 (3067456320)    (3)< Socket_getdata:370
20150202 104632.295 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005b0

20150202 104632.295 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104632.295 (3067456320)     (4)> readUTFlen:352
20150202 104632.296 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200630

20150202 104632.296 (3067456320)     (4)< readUTFlen:364
20150202 104632.296 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104632.296 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104632.296 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104632.296 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-68;142
20150202 104632.296 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104632.296 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007a0

20150202 104632.296 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200900

20150202 104632.296 Calling messageArrived for client InFlight, queue depth 0
20150202 104632.296 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104632.296 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104632.296 (3067456320)       (6)> UTF8_validateString:155
20150202 104632.296 (3067456320)        (7)> UTF8_validate:129
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104632.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104632.296 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104632.296 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104632.296 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a88

20150202 104632.296 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200a08

20150202 104632.296 (3067456320)       (6)> MQTTStrncpy:736
20150202 104632.296 (3067456320)       (6)< MQTTStrncpy:746
20150202 104632.296 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b68

20150202 104632.296 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104632.296 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62005e0

20150202 104632.296 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104632.297 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104632.297 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104632.297 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104632.297 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1136 bytes

20150202 104632.297 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1072 bytes

20150202 104632.297 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104632.297 (3075849024)  (1)> Thread_wait_cond:402
20150202 104632.297 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104632.297 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104632.297 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1040 bytes

20150202 104632.297 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104632.297 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104632.297 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104632.297 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1008 bytes

20150202 104632.297 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104632.297 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104632.297 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104632.297 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104632.297 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104632.297 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104632.297 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104632.297 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104632.297 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104632.297 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104632.297 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104632.297 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104632.297 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104632.297 Return code 1 from read select
20150202 104632.297 (3067456320)    (3)> Socket_continueWrites:777
20150202 104632.297 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104632.297 Return code 1 from write select
20150202 104632.297 (3067456320)    (3)> isReady:192
20150202 104632.297 (3067456320)    (3)< isReady:197 (1)
20150202 104632.297 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104632.297 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104632.297 (3067456320)    (3)> Socket_getch:297
20150202 104632.297 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104632.297 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104632.297 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104632.297 queueChar: index is now 1, headerlen 1
20150202 104633.295 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104633.295 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104633.295 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104633.295 (3067456320)     (4)> Socket_getch:297
20150202 104633.295 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104633.295 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104633.295 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104633.295 queueChar: index is now 2, headerlen 2
20150202 104633.295 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104633.295 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104633.295 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104633.295 (3067456320)    (3)> Socket_getdata:336
20150202 104633.295 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104633.295 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104633.295 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104633.295 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104633.295 (3067456320)    (3)< Socket_getdata:370
20150202 104633.295 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005b0

20150202 104633.295 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104633.295 (3067456320)     (4)> readUTFlen:352
20150202 104633.296 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200630

20150202 104633.296 (3067456320)     (4)< readUTFlen:364
20150202 104633.296 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104633.296 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104633.296 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104633.296 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-69;142
20150202 104633.296 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104633.296 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007a0

20150202 104633.296 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200820

20150202 104633.296 Calling messageArrived for client InFlight, queue depth 0
20150202 104633.296 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104633.296 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104633.296 (3067456320)       (6)> UTF8_validateString:155
20150202 104633.296 (3067456320)        (7)> UTF8_validate:129
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104633.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104633.296 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104633.296 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104633.296 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200980

20150202 104633.296 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200530

20150202 104633.296 (3067456320)       (6)> MQTTStrncpy:736
20150202 104633.296 (3067456320)       (6)< MQTTStrncpy:746
20150202 104633.296 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62006f8

20150202 104633.296 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104633.296 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62006a8

20150202 104633.296 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104633.296 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104633.296 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104633.296 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104633.296 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1312 bytes

20150202 104633.296 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1248 bytes

20150202 104633.296 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104633.296 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104633.296 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1216 bytes

20150202 104633.296 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104633.296 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104633.296 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104633.296 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104633.296 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104633.296 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104633.296 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104633.296 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1184 bytes

20150202 104633.296 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104633.296 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104633.296 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104633.296 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104633.297 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104633.297 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104633.297 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104633.297 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104633.297 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104633.297 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104633.297 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1184 bytes

20150202 104633.297 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1152 bytes

20150202 104633.297 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104633.297 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104633.297 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104633.297 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104633.297 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104633.297 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104633.297 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104633.297 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104633.297 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104633.297 (3075849024)       (6)> Socket_putdatas:443
20150202 104633.297 (3075849024)        (7)> Socket_writev:399
20150202 104633.297 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104633.297 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104633.297 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1200 bytes

20150202 104633.297 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104633.297 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1184 bytes

20150202 104633.297 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104633.297 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104633.297 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104633.297 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104633.297 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1168 bytes

20150202 104633.297 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1136 bytes

20150202 104633.297 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1104 bytes

20150202 104633.297 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104633.297 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104633.297 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104633.297 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104633.297 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104633.297 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104633.297 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104633.297 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104633.297 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104633.298 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104633.298 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104633.298 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104633.298 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104633.298 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104633.298 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104633.298 (3075849024)       (6)> Socket_putdatas:443
20150202 104633.298 (3075849024)        (7)> Socket_writev:399
20150202 104633.298 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104633.298 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104633.298 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104633.298 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104633.298 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104633.298 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104633.298 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104633.298 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104633.298 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104633.298 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104633.298 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104633.298 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104633.298 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104633.298 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104633.298 (3075849024)  (1)> Thread_wait_cond:402
20150202 104633.298 Return code 1 from read select
20150202 104633.298 (3067456320)    (3)> Socket_continueWrites:777
20150202 104633.298 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104633.298 Return code 1 from write select
20150202 104633.298 (3067456320)    (3)> isReady:192
20150202 104633.298 (3067456320)    (3)< isReady:197 (1)
20150202 104633.298 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104633.298 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104633.298 (3067456320)    (3)> Socket_getch:297
20150202 104633.298 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104633.298 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104633.298 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104633.298 queueChar: index is now 1, headerlen 1
20150202 104633.298 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104633.298 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104633.298 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104633.298 (3067456320)     (4)> Socket_getch:297
20150202 104634.295 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104634.295 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104634.295 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104634.295 queueChar: index is now 2, headerlen 2
20150202 104634.295 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104634.295 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104634.295 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104634.295 (3067456320)    (3)> Socket_getdata:336
20150202 104634.295 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104634.295 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104634.295 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104634.295 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104634.295 (3067456320)    (3)< Socket_getdata:370
20150202 104634.295 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200530

20150202 104634.295 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104634.295 (3067456320)     (4)> readUTFlen:352
20150202 104634.295 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200a08

20150202 104634.295 (3067456320)     (4)< readUTFlen:364
20150202 104634.295 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104634.295 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104634.295 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104634.295 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-70;142
20150202 104634.295 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104634.295 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005b0

20150202 104634.295 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200900

20150202 104634.295 Calling messageArrived for client InFlight, queue depth 0
20150202 104634.295 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104634.295 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104634.295 (3067456320)       (6)> UTF8_validateString:155
20150202 104634.295 (3067456320)        (7)> UTF8_validate:129
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.295 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.295 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.296 (3067456320)         (8)> UTF8_char_validate:79
20150202 104634.296 (3067456320)         (8)< UTF8_char_validate:113
20150202 104634.296 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104634.296 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104634.296 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200820

20150202 104634.296 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200630

20150202 104634.296 (3067456320)       (6)> MQTTStrncpy:736
20150202 104634.296 (3067456320)       (6)< MQTTStrncpy:746
20150202 104634.296 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b68

20150202 104634.296 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104634.296 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200748

20150202 104634.296 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104634.296 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104634.296 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104634.296 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104634.296 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1136 bytes

20150202 104634.296 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1072 bytes

20150202 104634.296 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104634.296 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104634.296 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1040 bytes

20150202 104634.296 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104634.296 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104634.296 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104634.296 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1008 bytes

20150202 104634.296 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104634.296 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104634.296 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104634.296 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104634.296 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104634.296 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104634.296 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104634.296 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104634.296 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104634.296 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104634.296 (3075849024)  (1)> Thread_wait_cond:402
20150202 104634.296 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104635.297 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104635.297 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104635.297 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104635.297 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104635.297 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1008 bytes

20150202 104635.297 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 976 bytes

20150202 104635.297 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104635.297 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104635.297 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104635.297 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104635.297 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104635.297 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104635.297 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104635.297 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104635.297 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104635.297 (3075849024)       (6)> Socket_putdatas:443
20150202 104635.297 (3075849024)        (7)> Socket_writev:399
20150202 104635.297 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104635.297 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104635.297 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1024 bytes

20150202 104635.299 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104635.299 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1008 bytes

20150202 104635.299 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104635.299 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104635.299 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104635.299 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104635.299 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 992 bytes

20150202 104635.299 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 960 bytes

20150202 104635.299 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 928 bytes

20150202 104635.299 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104635.299 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104635.299 (3075849024)  (1)> Thread_wait_cond:402
20150202 104635.299 Return code 0 from read select
20150202 104635.299 (3067456320)    (3)> Socket_continueWrites:777
20150202 104635.299 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104635.299 Return code 1 from write select
20150202 104635.299 (3067456320)    (3)> isReady:192
20150202 104635.299 (3067456320)    (3)< isReady:197 (0)
20150202 104635.299 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104635.299 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104635.400 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104635.400 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104635.400 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104635.400 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104635.400 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104635.400 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104635.400 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104635.400 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104635.400 Return code 1 from read select
20150202 104635.400 (3067456320)    (3)> Socket_continueWrites:777
20150202 104635.400 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104635.400 Return code 1 from write select
20150202 104635.400 (3067456320)    (3)> isReady:192
20150202 104635.400 (3067456320)    (3)< isReady:197 (1)
20150202 104635.400 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104635.400 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104635.400 (3067456320)    (3)> Socket_getch:297
20150202 104635.400 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104635.400 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104635.400 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104635.400 queueChar: index is now 1, headerlen 1
20150202 104635.400 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104635.400 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104635.400 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104635.400 (3067456320)     (4)> Socket_getch:297
20150202 104635.400 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104635.400 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104635.400 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104635.400 queueChar: index is now 2, headerlen 2
20150202 104635.400 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104635.400 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104635.400 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104635.400 (3067456320)    (3)> Socket_getdata:336
20150202 104635.400 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104635.400 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104635.400 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104635.400 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104635.400 (3067456320)    (3)< Socket_getdata:370
20150202 104635.400 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200630

20150202 104635.400 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104635.400 (3067456320)     (4)> readUTFlen:352
20150202 104635.400 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200530

20150202 104635.400 (3067456320)     (4)< readUTFlen:364
20150202 104635.400 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104635.400 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104635.400 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104635.400 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-71;142
20150202 104635.400 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104635.400 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200a08

20150202 104635.400 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a88

20150202 104635.400 Calling messageArrived for client InFlight, queue depth 0
20150202 104635.400 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104635.400 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104635.400 (3067456320)       (6)> UTF8_validateString:155
20150202 104635.400 (3067456320)        (7)> UTF8_validate:129
20150202 104635.400 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.400 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.400 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.400 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.400 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)         (8)> UTF8_char_validate:79
20150202 104635.401 (3067456320)         (8)< UTF8_char_validate:113
20150202 104635.401 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104635.401 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104635.401 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb62006f8

20150202 104635.401 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005b0

20150202 104635.401 (3067456320)       (6)> MQTTStrncpy:736
20150202 104635.401 (3067456320)       (6)< MQTTStrncpy:746
20150202 104635.401 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200980

20150202 104635.401 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104635.401 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62008e0

20150202 104635.401 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104635.401 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104635.401 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104635.401 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104635.401 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104635.401 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104635.401 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104635.401 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104635.401 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104635.401 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104635.401 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104635.401 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104635.401 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104635.401 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104635.401 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104635.401 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104635.401 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104635.401 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104635.401 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104635.401 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104635.401 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104635.401 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104635.401 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104635.401 (3075849024)  (1)> Thread_wait_cond:402
20150202 104635.401 Return code 1 from read select
20150202 104635.401 (3067456320)    (3)> Socket_continueWrites:777
20150202 104635.401 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104635.401 Return code 1 from write select
20150202 104635.401 (3067456320)    (3)> isReady:192
20150202 104635.401 (3067456320)    (3)< isReady:197 (1)
20150202 104635.401 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104635.401 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104635.401 (3067456320)    (3)> Socket_getch:297
20150202 104635.401 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104635.401 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104635.401 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104635.401 queueChar: index is now 1, headerlen 1
20150202 104635.401 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104635.401 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104635.401 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104636.300 (3067456320)     (4)> Socket_getch:297
20150202 104636.300 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104636.300 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104636.300 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104636.300 queueChar: index is now 2, headerlen 2
20150202 104636.300 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104636.300 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104636.300 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104636.300 (3067456320)    (3)> Socket_getdata:336
20150202 104636.300 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104636.300 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104636.300 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104636.300 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104636.300 (3067456320)    (3)< Socket_getdata:370
20150202 104636.300 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200630

20150202 104636.300 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104636.300 (3067456320)     (4)> readUTFlen:352
20150202 104636.300 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200530

20150202 104636.300 (3067456320)     (4)< readUTFlen:364
20150202 104636.300 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104636.300 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104636.300 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104636.300 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-72;142
20150202 104636.300 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104636.300 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200a08

20150202 104636.300 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200900

20150202 104636.300 Calling messageArrived for client InFlight, queue depth 0
20150202 104636.300 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104636.300 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104636.300 (3067456320)       (6)> UTF8_validateString:155
20150202 104636.300 (3067456320)        (7)> UTF8_validate:129
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.300 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.300 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.301 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.301 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.301 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.301 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.301 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.301 (3067456320)         (8)> UTF8_char_validate:79
20150202 104636.301 (3067456320)         (8)< UTF8_char_validate:113
20150202 104636.301 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104636.301 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104636.301 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200820

20150202 104636.301 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62007a0

20150202 104636.301 (3067456320)       (6)> MQTTStrncpy:736
20150202 104636.301 (3067456320)       (6)< MQTTStrncpy:746
20150202 104636.301 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b68

20150202 104636.301 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104636.301 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200a38

20150202 104636.301 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104636.301 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104636.301 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104636.301 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104636.301 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1312 bytes

20150202 104636.301 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1248 bytes

20150202 104636.301 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104636.301 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104636.301 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1216 bytes

20150202 104636.301 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104636.301 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104636.301 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104636.301 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1184 bytes

20150202 104636.301 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104636.301 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104636.301 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104636.301 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104636.301 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104636.301 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104636.301 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104636.301 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104636.301 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104636.301 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104636.301 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104636.302 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104636.302 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104636.302 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104636.302 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1184 bytes

20150202 104636.302 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1152 bytes

20150202 104636.302 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104636.302 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104636.302 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104636.302 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104636.302 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104636.302 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104636.302 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104636.302 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104636.302 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104636.302 (3075849024)       (6)> Socket_putdatas:443
20150202 104636.302 (3075849024)        (7)> Socket_writev:399
20150202 104636.302 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104636.302 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104636.302 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1200 bytes

20150202 104636.302 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104636.302 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1184 bytes

20150202 104636.302 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104636.302 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104636.302 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104636.302 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104636.302 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1168 bytes

20150202 104636.302 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1136 bytes

20150202 104636.302 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1104 bytes

20150202 104636.302 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1040 bytes

20150202 104636.302 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104636.302 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104636.302 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104636.302 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1008 bytes

20150202 104636.302 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 976 bytes

20150202 104636.302 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104636.302 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104636.302 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104636.302 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104636.302 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104636.302 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104636.303 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104636.303 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104636.303 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104636.303 (3075849024)       (6)> Socket_putdatas:443
20150202 104636.303 (3075849024)        (7)> Socket_writev:399
20150202 104636.303 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104636.303 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104636.303 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1024 bytes

20150202 104636.303 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104636.303 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1008 bytes

20150202 104636.303 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104636.303 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104636.303 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104636.303 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104636.303 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 992 bytes

20150202 104636.303 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 960 bytes

20150202 104636.303 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 928 bytes

20150202 104636.303 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104636.303 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104636.303 (3075849024)  (1)> Thread_wait_cond:402
20150202 104637.301 Return code 1 from read select
20150202 104637.301 (3067456320)    (3)> Socket_continueWrites:777
20150202 104637.301 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104637.301 Return code 1 from write select
20150202 104637.301 (3067456320)    (3)> isReady:192
20150202 104637.301 (3067456320)    (3)< isReady:197 (1)
20150202 104637.301 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104637.301 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104637.301 (3067456320)    (3)> Socket_getch:297
20150202 104637.301 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104637.301 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104637.301 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104637.301 queueChar: index is now 1, headerlen 1
20150202 104637.301 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104637.301 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104637.301 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104637.301 (3067456320)     (4)> Socket_getch:297
20150202 104637.301 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104637.301 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104637.301 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104637.302 queueChar: index is now 2, headerlen 2
20150202 104637.302 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104637.302 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104637.302 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104637.302 (3067456320)    (3)> Socket_getdata:336
20150202 104637.302 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104637.302 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104637.302 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104637.302 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104637.302 (3067456320)    (3)< Socket_getdata:370
20150202 104637.302 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62007a0

20150202 104637.302 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104637.302 (3067456320)     (4)> readUTFlen:352
20150202 104637.302 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005b0

20150202 104637.302 (3067456320)     (4)< readUTFlen:364
20150202 104637.302 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104637.302 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104637.302 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104637.302 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-73;142
20150202 104637.302 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104637.302 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200630

20150202 104637.302 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a88

20150202 104637.302 Calling messageArrived for client InFlight, queue depth 0
20150202 104637.302 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104637.302 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104637.302 (3067456320)       (6)> UTF8_validateString:155
20150202 104637.302 (3067456320)        (7)> UTF8_validate:129
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.302 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.302 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.303 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.303 (3067456320)         (8)> UTF8_char_validate:79
20150202 104637.303 (3067456320)         (8)< UTF8_char_validate:113
20150202 104637.303 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104637.303 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104637.303 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200900

20150202 104637.303 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200530

20150202 104637.303 (3067456320)       (6)> MQTTStrncpy:736
20150202 104637.303 (3067456320)       (6)< MQTTStrncpy:746
20150202 104637.303 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200980

20150202 104637.303 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104637.303 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200748

20150202 104637.303 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104637.303 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104637.303 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104637.303 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104637.303 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104637.303 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104637.303 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104637.303 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104637.303 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104637.303 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104637.303 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104637.303 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104637.303 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104637.303 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104637.303 (3075849024)  (1)> Thread_wait_cond:402
20150202 104637.303 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104637.303 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104637.303 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104637.303 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104637.303 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104637.303 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104637.303 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104637.303 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104637.303 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104637.303 (3067456320)    (3)> Socket_error:94
20150202 104637.303 (3067456320)    (3)< Socket_error:103 (4)
20150202 104637.303 (3067456320)   (2)< Socket_getReadySocket:282 (-1)
20150202 104637.303 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104637.304 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104637.304 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104637.304 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104637.304 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104637.304 Could not find client corresponding to socket -1
20150202 104637.304 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104637.304 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104637.304 Return code 1 from read select
20150202 104637.304 (3067456320)    (3)> Socket_continueWrites:777
20150202 104637.304 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104637.304 Return code 1 from write select
20150202 104637.304 (3067456320)    (3)> isReady:192
20150202 104637.304 (3067456320)    (3)< isReady:197 (1)
20150202 104637.304 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104637.304 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104637.304 (3067456320)    (3)> Socket_getch:297
20150202 104637.304 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104637.304 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104637.304 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104637.304 queueChar: index is now 1, headerlen 1
20150202 104638.304 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104638.304 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104638.304 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104638.304 (3067456320)     (4)> Socket_getch:297
20150202 104638.304 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104638.304 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104638.304 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104638.304 queueChar: index is now 2, headerlen 2
20150202 104638.304 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104638.304 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104638.304 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104638.304 (3067456320)    (3)> Socket_getdata:336
20150202 104638.304 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104638.304 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104638.304 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104638.304 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104638.304 (3067456320)    (3)< Socket_getdata:370
20150202 104638.304 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62007a0

20150202 104638.304 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104638.304 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104638.304 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104638.304 (3067456320)     (4)> readUTFlen:352
20150202 104638.304 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005b0

20150202 104638.304 (3067456320)     (4)< readUTFlen:364
20150202 104638.304 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104638.304 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104638.304 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104638.304 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-74;142
20150202 104638.304 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104638.304 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200630

20150202 104638.304 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f8

20150202 104638.304 Calling messageArrived for client InFlight, queue depth 0
20150202 104638.304 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104638.304 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104638.304 (3067456320)       (6)> UTF8_validateString:155
20150202 104638.304 (3067456320)        (7)> UTF8_validate:129
20150202 104638.304 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.304 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.304 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.304 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104638.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104638.305 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104638.305 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104638.305 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200820

20150202 104638.305 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200a08

20150202 104638.305 (3067456320)       (6)> MQTTStrncpy:736
20150202 104638.305 (3067456320)       (6)< MQTTStrncpy:746
20150202 104638.305 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a88

20150202 104638.305 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104638.305 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200688

20150202 104638.305 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104638.305 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104638.305 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104638.305 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104638.305 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104638.305 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104638.305 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104638.305 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104638.305 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104638.305 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104638.305 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104638.305 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104638.305 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104638.305 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104638.305 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104638.305 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104638.305 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104638.305 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104638.305 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104638.306 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104638.306 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104638.306 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104638.306 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104638.306 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104638.306 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104638.306 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104638.306 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104638.306 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104638.306 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104638.306 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104638.306 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104638.306 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104638.306 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104638.306 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104638.306 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104638.306 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104638.306 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104638.306 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104638.306 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104638.306 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104638.306 (3075849024)       (6)> Socket_putdatas:443
20150202 104638.306 (3075849024)        (7)> Socket_writev:399
20150202 104638.306 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104638.306 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104638.306 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104638.306 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104638.306 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104638.306 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104638.306 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104638.306 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104638.306 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104638.306 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104638.306 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104638.306 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104638.306 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104638.306 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104638.306 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104638.306 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104638.306 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104638.307 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104638.307 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104638.307 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104638.307 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104638.307 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104638.307 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104638.307 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104638.307 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104638.307 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104638.307 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104638.307 (3075849024)       (6)> Socket_putdatas:443
20150202 104638.307 (3075849024)        (7)> Socket_writev:399
20150202 104638.307 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104638.307 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104638.307 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104638.307 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104638.307 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104638.307 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104638.307 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104638.307 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104638.307 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104638.307 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104638.307 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104638.307 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104638.307 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104638.307 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104638.307 (3075849024)  (1)> Thread_wait_cond:402
20150202 104638.307 Return code 1 from read select
20150202 104638.307 (3067456320)    (3)> Socket_continueWrites:777
20150202 104638.307 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104638.307 Return code 1 from write select
20150202 104638.307 (3067456320)    (3)> isReady:192
20150202 104638.307 (3067456320)    (3)< isReady:197 (1)
20150202 104638.307 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104638.307 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104638.307 (3067456320)    (3)> Socket_getch:297
20150202 104638.307 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104638.307 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104638.307 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104638.307 queueChar: index is now 1, headerlen 1
20150202 104639.304 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104639.304 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104639.304 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104639.304 (3067456320)     (4)> Socket_getch:297
20150202 104639.304 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104639.304 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104639.304 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104639.304 queueChar: index is now 2, headerlen 2
20150202 104639.304 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104639.304 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104639.304 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104639.304 (3067456320)    (3)> Socket_getdata:336
20150202 104639.304 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104639.304 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104639.304 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104639.304 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104639.304 (3067456320)    (3)< Socket_getdata:370
20150202 104639.304 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a08

20150202 104639.304 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104639.304 (3067456320)     (4)> readUTFlen:352
20150202 104639.305 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200530

20150202 104639.305 (3067456320)     (4)< readUTFlen:364
20150202 104639.305 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104639.305 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104639.305 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104639.305 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-75;142
20150202 104639.305 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104639.305 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007a0

20150202 104639.305 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f8

20150202 104639.305 Calling messageArrived for client InFlight, queue depth 0
20150202 104639.305 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104639.305 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104639.305 (3067456320)       (6)> UTF8_validateString:155
20150202 104639.305 (3067456320)        (7)> UTF8_validate:129
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)         (8)> UTF8_char_validate:79
20150202 104639.305 (3067456320)         (8)< UTF8_char_validate:113
20150202 104639.305 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104639.305 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104639.305 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200980

20150202 104639.305 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005b0

20150202 104639.305 (3067456320)       (6)> MQTTStrncpy:736
20150202 104639.305 (3067456320)       (6)< MQTTStrncpy:746
20150202 104639.305 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200900

20150202 104639.305 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104639.305 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62005e0

20150202 104639.305 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104639.306 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104639.306 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104639.306 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104639.306 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104639.306 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104639.306 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104639.306 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104639.306 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104639.306 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104639.306 (3075849024)  (1)> Thread_wait_cond:402
20150202 104639.306 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104639.306 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104639.306 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104639.306 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104639.306 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104639.306 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104639.306 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104639.306 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104639.306 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104639.306 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104639.306 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104639.306 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104639.306 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104639.306 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104639.306 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104639.306 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104639.306 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104639.306 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104639.306 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104639.306 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104639.306 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104639.306 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104639.306 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104639.306 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104639.306 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104639.306 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104639.306 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104639.306 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104639.306 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104639.306 (3075849024)       (6)> Socket_putdatas:443
20150202 104640.307 (3075849024)        (7)> Socket_writev:399
20150202 104640.307 Return code 0 from read select
20150202 104640.307 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104640.307 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104640.307 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104640.307 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104640.307 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104640.307 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104640.307 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104640.307 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104640.307 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104640.307 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104640.307 (3067456320)    (3)> Socket_continueWrites:777
20150202 104640.307 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104640.307 Return code 1 from write select
20150202 104640.307 (3067456320)    (3)> isReady:192
20150202 104640.307 (3067456320)    (3)< isReady:197 (0)
20150202 104640.307 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104640.307 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104640.307 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104640.308 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104640.308 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104640.308 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104640.308 (3075849024)  (1)> Thread_wait_cond:402
20150202 104640.308 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104640.308 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104640.308 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104640.308 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104640.308 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104640.308 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104640.308 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104640.308 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104640.308 Return code 1 from read select
20150202 104640.308 (3067456320)    (3)> Socket_continueWrites:777
20150202 104640.308 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104640.308 Return code 1 from write select
20150202 104640.308 (3067456320)    (3)> isReady:192
20150202 104640.308 (3067456320)    (3)< isReady:197 (1)
20150202 104640.308 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104640.308 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104640.846 (3067456320)    (3)> Socket_getch:297
20150202 104640.846 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104640.846 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104640.846 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104640.846 queueChar: index is now 1, headerlen 1
20150202 104640.846 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104640.846 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104640.846 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104640.846 (3067456320)     (4)> Socket_getch:297
20150202 104640.846 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104640.846 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104640.846 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104640.846 queueChar: index is now 2, headerlen 2
20150202 104640.846 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104640.846 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104640.846 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104640.846 (3067456320)    (3)> Socket_getdata:336
20150202 104640.846 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104640.846 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104640.846 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104640.847 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104640.847 (3067456320)    (3)< Socket_getdata:370
20150202 104640.847 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005b0

20150202 104640.847 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104640.847 (3067456320)     (4)> readUTFlen:352
20150202 104640.847 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200a08

20150202 104640.847 (3067456320)     (4)< readUTFlen:364
20150202 104640.847 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104640.847 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104640.847 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104640.847 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-76;142
20150202 104640.847 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104640.847 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200530

20150202 104640.847 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a88

20150202 104640.847 Calling messageArrived for client InFlight, queue depth 0
20150202 104640.847 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104640.847 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104640.847 (3067456320)       (6)> UTF8_validateString:155
20150202 104640.847 (3067456320)        (7)> UTF8_validate:129
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)         (8)> UTF8_char_validate:79
20150202 104640.847 (3067456320)         (8)< UTF8_char_validate:113
20150202 104640.847 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104640.847 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104640.847 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200820

20150202 104640.847 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62007a0

20150202 104640.847 (3067456320)       (6)> MQTTStrncpy:736
20150202 104640.848 (3067456320)       (6)< MQTTStrncpy:746
20150202 104640.848 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62006f8

20150202 104640.848 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104640.848 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200468

20150202 104640.848 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104640.848 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104640.848 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104640.848 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104640.848 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104640.848 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104640.848 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104640.848 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104640.848 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104640.848 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104640.848 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104640.848 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104640.848 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104640.848 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104640.848 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104640.848 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104640.848 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104640.848 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104640.848 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104640.848 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104640.848 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104640.848 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104640.848 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104640.848 (3075849024)  (1)> Thread_wait_cond:402
20150202 104640.848 Return code 1 from read select
20150202 104640.848 (3067456320)    (3)> Socket_continueWrites:777
20150202 104640.848 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104640.848 Return code 1 from write select
20150202 104640.848 (3067456320)    (3)> isReady:192
20150202 104640.848 (3067456320)    (3)< isReady:197 (1)
20150202 104640.848 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104640.848 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104640.848 (3067456320)    (3)> Socket_getch:297
20150202 104640.848 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104640.848 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104640.848 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104641.310 queueChar: index is now 1, headerlen 1
20150202 104641.310 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104641.310 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104641.310 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104641.310 (3067456320)     (4)> Socket_getch:297
20150202 104641.310 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104641.310 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104641.310 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104641.310 queueChar: index is now 2, headerlen 2
20150202 104641.310 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104641.310 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104641.310 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104641.310 (3067456320)    (3)> Socket_getdata:336
20150202 104641.310 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104641.310 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104641.310 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104641.310 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104641.310 (3067456320)    (3)< Socket_getdata:370
20150202 104641.310 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb62005b0

20150202 104641.310 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104641.310 (3067456320)     (4)> readUTFlen:352
20150202 104641.310 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200a08

20150202 104641.310 (3067456320)     (4)< readUTFlen:364
20150202 104641.310 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104641.310 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104641.310 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104641.310 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-77;142
20150202 104641.310 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104641.310 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200530

20150202 104641.310 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200900

20150202 104641.310 Calling messageArrived for client InFlight, queue depth 0
20150202 104641.310 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104641.310 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104641.310 (3067456320)       (6)> UTF8_validateString:155
20150202 104641.310 (3067456320)        (7)> UTF8_validate:129
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.310 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.310 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104641.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104641.311 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104641.311 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104641.311 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200980

20150202 104641.311 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200630

20150202 104641.311 (3067456320)       (6)> MQTTStrncpy:736
20150202 104641.311 (3067456320)       (6)< MQTTStrncpy:746
20150202 104641.311 Allocating 80 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200b68

20150202 104641.311 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104641.311 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200870

20150202 104641.311 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104641.311 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104641.311 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104641.311 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104641.311 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1312 bytes

20150202 104641.311 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1248 bytes

20150202 104641.311 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104641.311 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104641.311 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1216 bytes

20150202 104641.311 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104641.311 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104641.311 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104641.311 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1184 bytes

20150202 104641.311 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104641.311 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104641.311 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104641.311 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104641.311 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104641.311 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104641.311 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104641.312 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104641.312 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104641.312 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104641.312 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104641.312 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104641.312 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104641.312 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104641.312 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1184 bytes

20150202 104641.312 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1152 bytes

20150202 104641.312 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104641.312 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104641.312 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104641.312 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104641.312 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104641.312 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104641.312 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104641.312 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104641.312 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104641.312 (3075849024)       (6)> Socket_putdatas:443
20150202 104641.312 (3075849024)        (7)> Socket_writev:399
20150202 104641.312 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104641.312 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104641.312 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1200 bytes

20150202 104641.312 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104641.312 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1184 bytes

20150202 104641.312 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104641.312 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104641.312 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104641.312 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104641.312 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1168 bytes

20150202 104641.312 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1136 bytes

20150202 104641.312 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1104 bytes

20150202 104641.312 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1040 bytes

20150202 104641.312 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104641.312 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104641.312 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104641.312 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1008 bytes

20150202 104641.312 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 976 bytes

20150202 104641.312 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104641.312 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104641.313 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104641.313 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104641.313 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104641.313 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104641.313 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104641.313 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104641.313 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104641.313 (3075849024)       (6)> Socket_putdatas:443
20150202 104641.313 (3075849024)        (7)> Socket_writev:399
20150202 104641.313 (3075849024)        (7)< Socket_writev:420 (91)
20150202 104641.313 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104641.313 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1024 bytes

20150202 104641.313 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104641.313 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1008 bytes

20150202 104641.313 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104641.313 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104641.313 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104641.313 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104641.313 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 992 bytes

20150202 104641.313 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 960 bytes

20150202 104641.313 Freeing 80 bytes in heap at file src/MQTTAsync.c line 866, heap use now 928 bytes

20150202 104641.313 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104641.313 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104641.313 (3075849024)  (1)> Thread_wait_cond:402
20150202 104641.313 Return code 1 from read select
20150202 104641.313 (3067456320)    (3)> Socket_continueWrites:777
20150202 104641.313 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104641.313 Return code 1 from write select
20150202 104641.313 (3067456320)    (3)> isReady:192
20150202 104641.313 (3067456320)    (3)< isReady:197 (1)
20150202 104641.313 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104641.313 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104641.313 (3067456320)    (3)> Socket_getch:297
20150202 104641.313 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104641.313 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104641.313 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104641.313 queueChar: index is now 1, headerlen 1
20150202 104641.313 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104641.313 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104641.313 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104642.311 (3067456320)     (4)> Socket_getch:297
20150202 104642.311 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104642.311 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104642.311 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104642.311 queueChar: index is now 2, headerlen 2
20150202 104642.311 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104642.311 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104642.311 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104642.311 (3067456320)    (3)> Socket_getdata:336
20150202 104642.311 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104642.311 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104642.311 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104642.311 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104642.311 (3067456320)    (3)< Socket_getdata:370
20150202 104642.311 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200630

20150202 104642.311 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104642.311 (3067456320)     (4)> readUTFlen:352
20150202 104642.311 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62007a0

20150202 104642.311 (3067456320)     (4)< readUTFlen:364
20150202 104642.311 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104642.311 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104642.311 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104642.311 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-78;142
20150202 104642.311 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104642.311 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62005b0

20150202 104642.311 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200a88

20150202 104642.311 Calling messageArrived for client InFlight, queue depth 0
20150202 104642.311 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104642.311 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104642.311 (3067456320)       (6)> UTF8_validateString:155
20150202 104642.311 (3067456320)        (7)> UTF8_validate:129
20150202 104642.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.311 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.311 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)         (8)> UTF8_char_validate:79
20150202 104642.312 (3067456320)         (8)< UTF8_char_validate:113
20150202 104642.312 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104642.312 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104642.312 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200900

20150202 104642.312 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200a08

20150202 104642.312 (3067456320)       (6)> MQTTStrncpy:736
20150202 104642.312 (3067456320)       (6)< MQTTStrncpy:746
20150202 104642.312 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb62006f8

20150202 104642.312 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104642.312 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200ad8

20150202 104642.312 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104642.312 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104642.312 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104642.312 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104642.312 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104642.312 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104642.312 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104642.312 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104642.312 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104642.312 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104642.312 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104642.312 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104642.312 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104642.312 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104642.312 (3075849024)  (1)> Thread_wait_cond:402
20150202 104642.312 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104642.312 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104642.312 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104642.312 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104642.312 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104642.312 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104642.312 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104642.312 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104642.312 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104643.313 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104643.313 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104643.313 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104643.313 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104643.313 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104643.313 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104643.313 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104643.313 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104643.313 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104643.313 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104643.313 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104643.313 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104643.313 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104643.313 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104643.313 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104643.313 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104643.313 (3075849024)       (6)> Socket_putdatas:443
20150202 104643.313 (3075849024)        (7)> Socket_writev:399
20150202 104643.313 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104643.313 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104643.313 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104643.313 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104643.313 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104643.313 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104643.313 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104643.313 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104643.313 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104643.313 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104643.313 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104643.313 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104643.313 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104643.313 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104643.313 (3075849024)  (1)> Thread_wait_cond:402
20150202 104643.313 Return code 0 from read select
20150202 104643.313 (3067456320)    (3)> Socket_continueWrites:777
20150202 104643.313 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104643.313 Return code 1 from write select
20150202 104643.313 (3067456320)    (3)> isReady:192
20150202 104643.313 (3067456320)    (3)< isReady:197 (0)
20150202 104643.313 (3067456320)   (2)< Socket_getReadySocket:282 (0)
20150202 104643.314 (3067456320)   (2)> MQTTAsync_sleep:305
20150202 104643.314 (3067456320)   (2)< MQTTAsync_sleep:311
20150202 104643.314 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104643.314 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104643.314 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104643.314 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104643.314 (3067456320)  (1)< MQTTAsync_cycle:2699 (-1)
20150202 104643.314 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104643.314 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104643.314 Return code 1 from read select
20150202 104643.314 (3067456320)    (3)> Socket_continueWrites:777
20150202 104643.314 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104643.314 Return code 1 from write select
20150202 104643.314 (3067456320)    (3)> isReady:192
20150202 104643.314 (3067456320)    (3)< isReady:197 (1)
20150202 104643.314 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104643.314 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104643.314 (3067456320)    (3)> Socket_getch:297
20150202 104643.314 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104643.314 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104643.415 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104643.415 queueChar: index is now 1, headerlen 1
20150202 104643.415 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104643.415 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104643.415 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104643.415 (3067456320)     (4)> Socket_getch:297
20150202 104643.415 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104643.415 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104643.415 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104643.415 queueChar: index is now 2, headerlen 2
20150202 104643.415 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104643.415 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104643.415 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104643.415 (3067456320)    (3)> Socket_getdata:336
20150202 104643.415 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104643.415 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104643.415 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104643.415 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104643.415 (3067456320)    (3)< Socket_getdata:370
20150202 104643.415 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a08

20150202 104643.415 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104643.415 (3067456320)     (4)> readUTFlen:352
20150202 104643.415 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200630

20150202 104643.415 (3067456320)     (4)< readUTFlen:364
20150202 104643.415 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104643.415 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104643.415 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104643.415 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-79;142
20150202 104643.415 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104643.415 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007a0

20150202 104643.415 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb6200820

20150202 104643.415 Calling messageArrived for client InFlight, queue depth 0
20150202 104643.415 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104643.415 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104643.415 (3067456320)       (6)> UTF8_validateString:155
20150202 104643.415 (3067456320)        (7)> UTF8_validate:129
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)         (8)> UTF8_char_validate:79
20150202 104643.415 (3067456320)         (8)< UTF8_char_validate:113
20150202 104643.415 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104643.415 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104643.415 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200980

20150202 104643.415 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb62005b0

20150202 104643.415 (3067456320)       (6)> MQTTStrncpy:736
20150202 104643.415 (3067456320)       (6)< MQTTStrncpy:746
20150202 104643.415 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200a88

20150202 104643.415 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104643.416 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb62009e8

20150202 104643.416 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104643.416 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104643.416 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104643.416 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104643.416 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104643.416 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104643.416 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104643.416 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104643.416 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104643.416 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104643.416 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104643.416 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104643.416 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104643.416 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104643.416 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104643.416 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104643.416 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104643.416 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104643.416 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104643.416 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104643.416 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104643.416 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104643.416 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104643.416 (3075849024)  (1)> Thread_wait_cond:402
20150202 104643.416 Return code 1 from read select
20150202 104643.416 (3067456320)    (3)> Socket_continueWrites:777
20150202 104643.416 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104643.416 Return code 1 from write select
20150202 104643.416 (3067456320)    (3)> isReady:192
20150202 104643.416 (3067456320)    (3)< isReady:197 (1)
20150202 104643.416 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104643.416 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104643.416 (3067456320)    (3)> Socket_getch:297
20150202 104643.416 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104643.416 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104643.416 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104643.416 queueChar: index is now 1, headerlen 1
20150202 104643.416 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104643.416 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104644.317 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104644.317 (3067456320)     (4)> Socket_getch:297
20150202 104644.317 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104644.317 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104644.317 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104644.317 queueChar: index is now 2, headerlen 2
20150202 104644.317 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104644.317 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104644.317 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104644.317 (3067456320)    (3)> Socket_getdata:336
20150202 104644.317 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104644.317 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104644.317 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104644.317 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104644.317 (3067456320)    (3)< Socket_getdata:370
20150202 104644.317 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200a08

20150202 104644.317 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104644.317 (3067456320)     (4)> readUTFlen:352
20150202 104644.317 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb6200630

20150202 104644.317 (3067456320)     (4)< readUTFlen:364
20150202 104644.317 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104644.317 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104644.317 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104644.317 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-80;142
20150202 104644.317 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104644.317 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb62007a0

20150202 104644.317 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f8

20150202 104644.317 Calling messageArrived for client InFlight, queue depth 0
20150202 104644.317 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104644.317 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104644.317 (3067456320)       (6)> UTF8_validateString:155
20150202 104644.317 (3067456320)        (7)> UTF8_validate:129
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.317 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.317 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.318 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.318 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.318 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.318 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.318 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.318 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.318 (3067456320)         (8)> UTF8_char_validate:79
20150202 104644.318 (3067456320)         (8)< UTF8_char_validate:113
20150202 104644.318 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104644.318 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104644.318 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200900

20150202 104644.318 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200530

20150202 104644.318 (3067456320)       (6)> MQTTStrncpy:736
20150202 104644.318 (3067456320)       (6)< MQTTStrncpy:746
20150202 104644.318 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200820

20150202 104644.318 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104644.318 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200b28

20150202 104644.318 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104644.318 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104644.318 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104644.318 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104644.318 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1296 bytes

20150202 104644.318 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1232 bytes

20150202 104644.318 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104644.318 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104644.318 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1200 bytes

20150202 104644.318 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104644.318 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104644.318 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104644.318 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104644.318 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104644.318 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 1168 bytes

20150202 104644.318 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104644.318 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104644.318 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104644.318 (3067456320)    (3)> MQTTProtocol_keepalive:512
20150202 104644.318 (3067456320)    (3)< MQTTProtocol_keepalive:545
20150202 104644.318 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104644.318 (3067456320)     (4)> MQTTProtocol_retries:559
20150202 104644.318 (3067456320)     (4)< MQTTProtocol_retries:615
20150202 104644.319 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104644.319 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104644.319 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104644.319 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104644.319 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104644.319 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104644.319 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104644.319 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104644.319 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 1168 bytes

20150202 104644.319 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 1136 bytes

20150202 104644.319 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104644.319 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104644.319 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104644.319 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104644.319 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104644.319 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104644.319 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104644.319 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104644.319 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104644.319 (3075849024)       (6)> Socket_putdatas:443
20150202 104644.319 (3075849024)        (7)> Socket_writev:399
20150202 104644.319 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104644.319 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104644.319 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1184 bytes

20150202 104644.319 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104644.319 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 1168 bytes

20150202 104644.319 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104644.319 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104644.319 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104644.319 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104644.319 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 1152 bytes

20150202 104644.319 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 1120 bytes

20150202 104644.319 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 1088 bytes

20150202 104644.319 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 1024 bytes

20150202 104644.319 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104644.319 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104644.319 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104644.319 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104644.319 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104644.319 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104644.320 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104644.320 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104644.320 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104644.320 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104644.320 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104644.320 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104644.320 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104644.320 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104644.320 (3075849024)       (6)> Socket_putdatas:443
20150202 104644.320 (3075849024)        (7)> Socket_writev:399
20150202 104644.320 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104644.320 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104644.320 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104644.320 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104644.320 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104644.320 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104644.320 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104644.320 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104644.320 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104644.320 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104644.320 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104644.320 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104644.320 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104644.320 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104644.320 (3075849024)  (1)> Thread_wait_cond:402
20150202 104644.320 Return code 1 from read select
20150202 104644.320 (3067456320)    (3)> Socket_continueWrites:777
20150202 104644.320 (3067456320)    (3)< Socket_continueWrites:799 (0)
20150202 104644.320 Return code 1 from write select
20150202 104644.320 (3067456320)    (3)> isReady:192
20150202 104644.320 (3067456320)    (3)< isReady:197 (1)
20150202 104644.320 (3067456320)   (2)< Socket_getReadySocket:282 (3)
20150202 104644.320 (3067456320)   (2)> MQTTPacket_Factory:104
20150202 104644.320 (3067456320)    (3)> Socket_getch:297
20150202 104644.320 (3067456320)     (4)> SocketBuffer_getQueuedChar:189
20150202 104644.320 (3067456320)     (4)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104644.320 (3067456320)     (4)> SocketBuffer_queueChar:268
20150202 104644.320 queueChar: index is now 1, headerlen 1
20150202 104644.320 (3067456320)     (4)< SocketBuffer_queueChar:292
20150202 104644.320 (3067456320)    (3)< Socket_getch:318 (0)
20150202 104645.319 (3067456320)    (3)> MQTTPacket_decode:297
20150202 104645.319 (3067456320)     (4)> Socket_getch:297
20150202 104645.319 (3067456320)      (5)> SocketBuffer_getQueuedChar:189
20150202 104645.319 (3067456320)      (5)< SocketBuffer_getQueuedChar:208 (-22)
20150202 104645.319 (3067456320)      (5)> SocketBuffer_queueChar:268
20150202 104645.319 queueChar: index is now 2, headerlen 2
20150202 104645.319 (3067456320)      (5)< SocketBuffer_queueChar:292
20150202 104645.319 (3067456320)     (4)< Socket_getch:318 (0)
20150202 104645.319 (3067456320)    (3)< MQTTPacket_decode:317 (0)
20150202 104645.319 (3067456320)    (3)> Socket_getdata:336
20150202 104645.319 (3067456320)     (4)> SocketBuffer_getQueuedData:149
20150202 104645.319 (3067456320)     (4)< SocketBuffer_getQueuedData:174
20150202 104645.319 (3067456320)     (4)> SocketBuffer_complete:244
20150202 104645.319 (3067456320)     (4)< SocketBuffer_complete:253
20150202 104645.319 (3067456320)    (3)< Socket_getdata:370
20150202 104645.319 Allocating 32 bytes in heap at file src/MQTTPacket.c line 483 ptr 0xb6200530

20150202 104645.319 (3067456320)    (3)> MQTTPacket_publish:487
20150202 104645.319 (3067456320)     (4)> readUTFlen:352
20150202 104645.319 Allocating 32 bytes in heap at file src/MQTTPacket.c line 358 ptr 0xb62005b0

20150202 104645.319 (3067456320)     (4)< readUTFlen:364
20150202 104645.320 (3067456320)    (3)< MQTTPacket_publish:502
20150202 104645.320 (3067456320)   (2)< MQTTPacket_Factory:162 (0)
20150202 104645.320 (3067456320)   (2)> MQTTProtocol_handlePublishes:263
20150202 104645.320 3 InFlight <- PUBLISH msgid: 0 qos: 0 retained: 0 payload: 1422870325168-81;142
20150202 104645.320 (3067456320)    (3)> Protocol_processPublication:1859
20150202 104645.320 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1860 ptr 0xb6200a08

20150202 104645.320 Allocating 64 bytes in heap at file src/MQTTAsync.c line 1869 ptr 0xb62006f8

20150202 104645.320 Calling messageArrived for client InFlight, queue depth 0
20150202 104645.320 (3067456320)     (4)> MQTTAsync_sendMessage:2405
20150202 104645.320 (3067456320)      (5)> MQTTAsync_send:2357
20150202 104645.320 (3067456320)       (6)> UTF8_validateString:155
20150202 104645.320 (3067456320)        (7)> UTF8_validate:129
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3075849024)  (1)< Thread_wait_cond:416 (110)
20150202 104645.320 (3075849024)  (1)> Thread_wait_cond:402
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.320 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.320 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.321 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.321 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.321 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.321 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.321 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.321 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.321 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.321 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.321 (3067456320)         (8)> UTF8_char_validate:79
20150202 104645.321 (3067456320)         (8)< UTF8_char_validate:113
20150202 104645.321 (3067456320)        (7)< UTF8_validate:141 (1)
20150202 104645.321 (3067456320)       (6)< UTF8_validateString:157 (1)
20150202 104645.321 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2373 ptr 0xb6200a88

20150202 104645.321 Allocating 32 bytes in heap at file src/MQTTProtocolClient.c line 759 ptr 0xb6200630

20150202 104645.321 (3067456320)       (6)> MQTTStrncpy:736
20150202 104645.321 (3067456320)       (6)< MQTTStrncpy:746
20150202 104645.321 Allocating 64 bytes in heap at file src/MQTTAsync.c line 2387 ptr 0xb6200980

20150202 104645.321 (3067456320)       (6)> MQTTAsync_addCommand:737
20150202 104645.321 Allocating 16 bytes in heap at file src/LinkedList.c line 93 ptr 0xb6200ad8

20150202 104645.321 (3067456320)       (6)< MQTTAsync_addCommand:768 (0)
20150202 104645.321 (3067456320)      (5)< MQTTAsync_send:2394 (0)
20150202 104645.321 (3067456320)     (4)< MQTTAsync_sendMessage:2420 (0)
20150202 104645.321 (3067456320)     (4)> MQTTAsync_freeMessage:1401
20150202 104645.321 Freeing 64 bytes in heap at file src/MQTTAsync.c line 1402, heap use now 1120 bytes

20150202 104645.321 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1403, heap use now 1056 bytes

20150202 104645.321 (3075849024)  (1)< Thread_wait_cond:416 (0)
20150202 104645.321 (3075849024)  (1)> MQTTAsync_checkTimeouts:1179
20150202 104645.321 (3075849024)  (1)< MQTTAsync_checkTimeouts:1251
20150202 104645.321 (3075849024)  (1)> MQTTAsync_processCommand:937
20150202 104645.321 (3067456320)     (4)< MQTTAsync_freeMessage:1405
20150202 104645.321 (3067456320)     (4)> MQTTAsync_free:1411
20150202 104645.321 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1412, heap use now 1024 bytes

20150202 104645.321 (3067456320)     (4)< MQTTAsync_free:1413
20150202 104645.321 (3067456320)    (3)< Protocol_processPublication:1910
20150202 104645.321 (3067456320)    (3)> MQTTPacket_freePublish:513
20150202 104645.321 Freeing 32 bytes in heap at file src/MQTTPacket.c line 516, heap use now 992 bytes

20150202 104645.321 (3067456320)    (3)< MQTTPacket_freePublish:517
20150202 104645.321 (3067456320)   (2)< MQTTProtocol_handlePublishes:302 (0)
20150202 104645.321 (3067456320)   (2)> MQTTAsync_retry:2430
20150202 104645.321 (3067456320)    (3)> MQTTProtocol_retry:629
20150202 104645.322 (3067456320)    (3)< MQTTProtocol_retry:648
20150202 104645.322 (3067456320)   (2)< MQTTAsync_retry:2440
20150202 104645.322 (3067456320)  (1)< MQTTAsync_cycle:2699 (0)
20150202 104645.322 (3067456320)  (1)> MQTTAsync_cycle:2563
20150202 104645.322 (3067456320)   (2)> Socket_getReadySocket:216
20150202 104645.322 Allocating 32 bytes in heap at file src/LinkedList.c line 56 ptr 0xb6400720

20150202 104645.322 Freeing 32 bytes in heap at file src/LinkedList.c line 389, heap use now 992 bytes

20150202 104645.322 Freeing 16 bytes in heap at file src/LinkedList.c line 222, heap use now 960 bytes

20150202 104645.322 Allocating 32 bytes in heap at file src/MQTTAsync.c line 1074 ptr 0xb6400720

20150202 104645.322 (3075849024)   (2)> MQTTProtocol_startPublish:147
20150202 104645.322 (3075849024)    (3)> MQTTProtocol_startPublishCommon:124
20150202 104645.322 (3075849024)     (4)> MQTTPacket_send_publish:677
20150202 104645.322 Allocating 16 bytes in heap at file src/MQTTPacket.c line 678 ptr 0xb64008d8

20150202 104645.322 (3075849024)      (5)> MQTTPacket_sends:226
20150202 104645.322 Allocating 16 bytes in heap at file src/MQTTPacket.c line 227 ptr 0xb64007f8

20150202 104645.322 (3075849024)       (6)> MQTTPacket_encode:268
20150202 104645.322 (3075849024)       (6)< MQTTPacket_encode:278 (1)
20150202 104645.322 (3075849024)       (6)> Socket_putdatas:443
20150202 104645.322 (3075849024)        (7)> Socket_writev:399
20150202 104645.322 (3075849024)        (7)< Socket_writev:420 (83)
20150202 104645.322 (3075849024)       (6)< Socket_putdatas:485 (0)
20150202 104645.322 Freeing 16 bytes in heap at file src/MQTTPacket.c line 252, heap use now 1008 bytes

20150202 104645.322 (3075849024)      (5)< MQTTPacket_sends:253 (0)
20150202 104645.322 Freeing 16 bytes in heap at file src/MQTTPacket.c line 710, heap use now 992 bytes

20150202 104645.322 3 InFlight -> PUBLISH qos: 0 retained: 0 (0)
20150202 104645.322 (3075849024)     (4)< MQTTPacket_send_publish:716 (0)
20150202 104645.322 (3075849024)    (3)< MQTTProtocol_startPublishCommon:128 (0)
20150202 104645.322 (3075849024)   (2)< MQTTProtocol_startPublish:158 (0)
20150202 104645.322 Freeing 32 bytes in heap at file src/MQTTAsync.c line 1109, heap use now 976 bytes

20150202 104645.322 Freeing 32 bytes in heap at file src/MQTTAsync.c line 865, heap use now 944 bytes

20150202 104645.322 Freeing 64 bytes in heap at file src/MQTTAsync.c line 866, heap use now 912 bytes

20150202 104645.322 Freeing 64 bytes in heap at file src/MQTTAsync.c line 873, heap use now 848 bytes

20150202 104645.322 (3075849024)  (1)< MQTTAsync_processCommand:1169
20150202 104645.322 (3075849024)  (1)> Thread_wait_cond:402

Back to the top