This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

有關 sl_Connect() 卡死的問題

Other Parts Discussed in Thread: CC3200

TI 您好。

最近在嘗試TLS socket的連線 以CC3200維client端。

TLS設置如下:

method = SL_SO_SEC_METHOD_TLSV1_2;//SL_SO_SEC_METHOD_TLSV1_2;

cipher = SL_SEC_MASK_TLS_RSA_WITH_AES_256_CBC_SHA;

SlSockSecureFiles_t SecureFiles;
SecureFiles.secureFiles[0] = 0; 
SecureFiles.secureFiles[1] = 0; 
SecureFiles.secureFiles[2] = 0;
SecureFiles.secureFiles[3] = 0; 

當我call sl_Connect時,完全卡死在裡面沒有return數值。

我在server端錄了packet如下,

看起來是CC3200 沒收到Server Hello Done,因此3200沒發client key exchange Message。

可是網址換成www.google.com是可以正常連線的。

想知道這樣的情況是怎麼造成的。