TuyaOS
tls_transporter.h
1#ifndef __TLS_TRANSPORTER_H__
2#define __TLS_TRANSPORTER_H__
3#ifdef __cplusplus
4extern "C" {
5#endif
6
14tuya_transporter_t tuya_tls_transporter_create();
15
25OPERATE_RET tuya_tls_transporter_destroy(tuya_transporter_t transporter);
26
40OPERATE_RET tuya_tls_transporter_ctrl(tuya_transporter_t t, uint32_t cmd, void* args);
41
51OPERATE_RET tuya_tls_transporter_close(tuya_transporter_t t);
52
53#ifdef __cplusplus
54} // extern "C"
55#endif
56
57#endif
Definition: tuya_transporter.h:387