aliyun / iotkit-embedded

高速镜像: https://code.aliyun.com/linkkit/c-sdk
Apache License 2.0
496 stars 252 forks source link

Retransmission doesn't work in dtls handshake #106

Open ccli8 opened 5 years ago

ccli8 commented 5 years ago

Environment

Platform: Ubuntu 18.04 aliyun/iotkit: RELEASED_V2_1_20180320 Test code: sample/coap/coap-example.c

Description

Hi,

I am testing coap example but fail in dtls handshake. To help debug, I set mbedtls debug level to 2. src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c:

dtls_session_t *_DTLSSession_init()
{
    dtls_session_t *p_dtls_session = NULL;
    p_dtls_session = coap_malloc(sizeof(dtls_session_t));

    
    mbedtls_debug_set_threshold(2);
    

And I get log below. I've run several times and find that when -0x6800 error is met, mbedtls tries to re-transmit but the mechanism doesn't work.

[COAP-Client]: Enter Coap Client
*****The Product Key  : a1SaLQJIZzr *****
*****The Device Name  : tRigXE0ATjmiyJlv6aPp *****
*****The Device ID    : a1SaLQJIZzr.tRigXE0ATjmiyJlv6aPp *****
[inf] IOT_CoAP_Init(607): Using default CoAP server: coaps://a1SaLQJIZzr.iot-as-coap.cn-shanghai.aliyuncs.com:5684
[dbg] CoAPUri_parse(66): The endpoint type is: 1
[dbg] CoAPUri_parse(94): The host name is: a1SaLQJIZzr.iot-as-coap.cn-shanghai.aliyuncs.com
[dbg] CoAPUri_parse(117): The port is: 5684
<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #170]   HAL_DTLSSession_init success
<TRACE> [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #82]   Call mbedtls_ssl_conf_authmode
<TRACE> [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #84]   x509 ca cert pem len 1281
-----BEGIN CERTIFICATE-----
MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG
A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv
b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw
MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i
YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT
aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ
jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp
xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp
1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG
snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ
U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8
9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E
BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B
AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz
yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE
38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP
AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad
DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME
HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A==
-----END CERTIFICATE-----
<TRACE> [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #89]   mbedtls_x509_crt_parse result 0x0000
<TRACE> [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #117]   mbedtls_ssl_setup result 0x0000
<TRACE> [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #128]   mbedtls_ssl_set_hostname a1SaLQJIZzr.iot-as-coap.cn-shanghai.aliyuncs.com
<TRACE> [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #136]   mbedtls_ssl_set_bio result 0x0000
<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 0

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 1

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[717]: => write client hello

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 105, out_left: 105

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 105 (-0xffffff97)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1049]: <= write client hello

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 2

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1410]: => parse server hello

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 44 (-0xffffffd4)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 44, nb_want: 44

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3753]: <= read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1449]: received hello verify request

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1450]: <= parse server hello

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1326]: => parse hello verify request

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1385]: <= parse hello verify request

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 1

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[717]: => write client hello

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 121, out_left: 121

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 121 (-0xffffff87)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1049]: <= write client hello

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 2

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1410]: => parse server hello

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 70 (-0xffffffba)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 70, nb_want: 70

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3753]: <= read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1671]: server hello, total extension length: 5

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[1859]: <= parse server hello

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 3

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4223]: => parse certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 512 (-0xfffffe00)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 512, nb_want: 512

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3137]: found fragmented DTLS handshake message

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2945]: initialize reassembly, total length = 3703

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3008]: adding fragment, offset = 0, length = 487

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3019]: message is not complete yet

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 3

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4223]: => parse certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 512 (-0xfffffe00)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 512, nb_want: 512

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3137]: found fragmented DTLS handshake message

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3008]: adding fragment, offset = 487, length = 487

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3019]: message is not complete yet

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 3

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4223]: => parse certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 512 (-0xfffffe00)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 512, nb_want: 512

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3137]: found fragmented DTLS handshake message

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3008]: adding fragment, offset = 974, length = 487

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3019]: message is not complete yet

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 3

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4223]: => parse certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 512 (-0xfffffe00)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 512, nb_want: 512

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3137]: found fragmented DTLS handshake message

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3008]: adding fragment, offset = 1948, length = 487

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3019]: message is not complete yet

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 3

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4223]: => parse certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 512 (-0xfffffe00)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 512, nb_want: 512

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3137]: found fragmented DTLS handshake message

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3008]: adding fragment, offset = 1461, length = 487

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3019]: message is not complete yet

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 3

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4223]: => parse certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 512 (-0xfffffe00)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 512, nb_want: 512

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3137]: found fragmented DTLS handshake message

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3008]: adding fragment, offset = 2435, length = 487

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3019]: message is not complete yet

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 3

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4223]: => parse certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 512 (-0xfffffe00)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 512, nb_want: 512

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3137]: found fragmented DTLS handshake message

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3008]: adding fragment, offset = 2922, length = 487

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3019]: message is not complete yet

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 3

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4223]: => parse certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned 344 (-0xfffffea8)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2403]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 344, nb_want: 319

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3137]: found fragmented DTLS handshake message

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3008]: adding fragment, offset = 3409, length = 294

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3023]: handshake message completed

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3753]: <= read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4490]: <= parse certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 4

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[2198]: => parse server key exchange

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[2203]: <= skip parse server key exchange

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 5

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[2556]: => parse certificate request

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2259]: next record in same datagram, offset: 3728

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 25, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 25, nb_want: 25

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2276]: <= fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3753]: <= read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[2674]: <= parse certificate request

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 6

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[2689]: => parse server hello done

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[2721]: <= parse server hello done

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 7

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4107]: => write certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4124]: <= skip write certificate

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 8

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[2732]: => write client key exchange

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 283, out_left: 283

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 283 (-0xfffffee5)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[2977]: <= write client key exchange

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 9

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3026]: => write certificate verify

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[501]: => derive keys

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[957]: <= derive keys

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3047]: <= skip write certificate verify

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 10

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4506]: => write change cipher spec

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 14, out_left: 14

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 14 (-0xfffffff2)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4520]: <= write change cipher spec

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 11

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[5031]: => write finished

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4856]: => calc  finished tls sha256

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4886]: <= calc  finished

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[1258]: => encrypt buf

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[1560]: <= encrypt buf

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 93, out_left: 93

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 93 (-0xffffffa3)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[5140]: <= write finished

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 12

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4529]: => parse change cipher spec

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned -26624 (-0x6800)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2323]: timeout

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2591]: => mbedtls_ssl_resend

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2595]: initialise resending

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 283, out_left: 283

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 283 (-0xfffffee5)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 14, out_left: 14

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 14 (-0xfffffff2)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[1258]: => encrypt buf

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[1560]: <= encrypt buf

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 93, out_left: 93

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 93 (-0xffffffa3)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2640]: <= mbedtls_ssl_resend

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 12

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4529]: => parse change cipher spec

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned -26624 (-0x6800)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2323]: timeout

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2591]: => mbedtls_ssl_resend

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2595]: initialise resending

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 283, out_left: 283

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 283 (-0xfffffee5)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 14, out_left: 14

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 14 (-0xfffffff2)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2701]: => write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[1258]: => encrypt buf

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[1560]: <= encrypt buf

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2435]: message length: 93, out_left: 93

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2441]: ssl->f_send() returned 93 (-0xffffffa3)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2460]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2850]: <= write record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2640]: <= mbedtls_ssl_resend

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6344]: => handshake

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_cli.c]:[3279]: client state: 12

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2416]: => flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2428]: <= flush output

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4529]: => parse change cipher spec

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3728]: => read record

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2208]: => fetch input

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2269]: in_left: 0, nb_want: 13

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2315]: ssl->f_recv(_timeout)() returned -26624 (-0x6800)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2323]: timeout

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[2330]: handshake timeout

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3789]: mbedtls_ssl_fetch_input() returned -26624 (-0x6800)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[3734]: mbedtls_ssl_read_record_layer() returned -26624 (-0x6800)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[4533]: mbedtls_ssl_read_record() returned -26624 (-0x6800)

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6354]: <= handshake

<TRACE> [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #142]   mbedtls_ssl_handshake result 0xffff9800
<ERROR> [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #271]   DTLSVerifyOptions_set result 0x1000004
<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6914]: => write close notify

<INFO>  [/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/platform/ssl/mbedtls/HAL_DTLS_mbedtls.c #107]   [mbedTLS]:[/home/ccli8/mywork/IoT/mbed/mbed-examples/aliyun-iotkit-embedded/src/tls/mbedtls-in-iotkit/library/ssl_tls.c]:[6930]: <= write close notify

[err] IOT_CoAP_Init(614):  Create coap context failed
IoTx CoAP init failed
Bloodance commented 5 years ago

please upgrade your sdk version to v2.3.0