Other Parts Discussed in Thread: CC3100
How do I disable the SL_ERROR_BSD_ESECUNKNOWNROOTCA warning using the TI-RTOS MQTT project?
Documentation (SWPU332A Section 2.5.5 Connecting to a Server With a Self-Signed Certificate) suggests the following:
_u32 dummyVal;
sl_SetSockOpt(clt_sock, SL_SOL_SOCKET,
SL_SO_SECURE_DISABLE_CERTIFICATE_STORE,
&dummyVal, sizeof(dummyVal));
I understand the data structure (mqttClientParams) that is used to communicate the secure file names, but I can't find within the MQTT project where the sl function calls are that actually setup the socket options. I'm migrating over to CC3220 from CC3100 so I have a good idea of how the bare-metal code is structured, but I do not have any previous experience with TI-RTOS (or any RTOS) besides what is in Simplelink Academy.
Thank you.