Link Kit C-SDK
4.1.0
|
remote-access模块的API接口实现, 提供远程隧道的能力 更多...
#include <stdio.h>
#include "core_stdinc.h"
#include "core_log.h"
#include "aiot_sysdep_api.h"
#include "aiot_state_api.h"
#include "aiot_ra_api.h"
#include "aiot_tunnel_api.h"
#include "aiot_tunnel_switch_api.h"
#include "ra_private.h"
函数 | |
static void | remote_proxy_event_handle (ra_handle_t *ra_handle, aiot_ra_event_type type, char *tunnel_id) |
static void | _tunnel_event_cb (void *handle, const aiot_tunnel_event_t *event, void *userdata) |
void * | aiot_ra_init (void) |
创建ra会话实例, 并以默认值配置会话参数 更多... | |
static void | _ra_tunnel_switch_recv_handle (void *handle, const aiot_tunnel_switch_recv_data_t *recv, void *userdata) |
int32_t | aiot_ra_setopt (void *handle, aiot_ra_option_t option, void *data) |
配置ra会话 更多... | |
int32_t | aiot_ra_deinit (void **handle) |
结束ra会话, 销毁实例并回收资源 更多... | |
void * | aiot_ra_start (void *handle) |
开始ra服务,作为线程开始运行 更多... | |
int32_t | aiot_ra_stop (void *handle) |
停止ra服务,aiot_ra_start线程退出 更多... | |
int32_t | aiot_ra_request (void *handle) |
主动请求建立通道 更多... | |
变量 | |
static char * | TAG = "RA" |
remote-access模块的API接口实现, 提供远程隧道的能力
|
static |
|
static |
void* aiot_ra_init | ( | void | ) |
创建ra会话实例, 并以默认值配置会话参数
非NULL | ra实例的句柄 |
NULL | 初始化失败, 一般是内存分配失败导致 |
|
static |
int32_t aiot_ra_setopt | ( | void * | handle, |
aiot_ra_option_t | option, | ||
void * | data | ||
) |
配置ra会话
[in] | handle | ra会话句柄 |
[in] | option | 配置选项, 更多信息请参考aiot_ra_option_t |
[in] | data | 配置选项数据, 更多信息请参考aiot_ra_option_t |
<STATE_SUCCESS | 参数配置失败 |
>=STATE_SUCCESS | 参数配置成功 |
int32_t aiot_ra_deinit | ( | void ** | handle | ) |
结束ra会话, 销毁实例并回收资源
[in] | handle | 指向ra会话句柄的指针 |
<STATE_SUCCESS | 执行失败 |
>=STATE_SUCCESS | 执行成功 |
void* aiot_ra_start | ( | void * | handle | ) |
开始ra服务,作为线程开始运行
[in] | handle | 指向ra会话句柄的指针 |
<STATE_SUCCESS | 执行失败, 更多信息请参考 STATE_REMOTE_* 定义 |
>=STATE_SUCCESS | 执行成功 |
int32_t aiot_ra_stop | ( | void * | handle | ) |
停止ra服务,aiot_ra_start线程退出
[in] | handle | 指向ra会话句柄的指针 |
<STATE_SUCCESS | 执行失败, 更多信息请参考 STATE_REMOTE_* 定义 |
>=STATE_SUCCESS | 执行成功 |
int32_t aiot_ra_request | ( | void * | handle | ) |
主动请求建立通道
[in] | handle | 指向ra会话句柄的指针 |
<STATE_SUCCESS | 执行失败, 更多信息请参考 STATE_REMOTE_* 定义 |
>=STATE_SUCCESS | 执行成功 |
|
static |