Bootstrap模块的API接口实现, 提供获取阿里云物联网平台连接信息的能力 更多...
#include "bootstrap_private.h"
函数 | |
static void | _bootstrap_exec_inc (bootstrap_handle_t *bootstrap_handle) |
static void | _bootstrap_exec_dec (bootstrap_handle_t *bootstrap_handle) |
static void | _bootstrap_http_recv_handler (void *handle, const aiot_http_recv_t *packet, void *userdata) |
static int32_t | _bootstrap_connection_info (bootstrap_handle_t *bootstrap_handle, char **host, uint16_t *port) |
static int32_t | _bootstrap_send_get_request (bootstrap_handle_t *bootstrap_handle) |
static int32_t | _bootstrap_send_post_request (bootstrap_handle_t *bootstrap_handle) |
static void | _bootstrap_alink_reply (bootstrap_handle_t *bootstrap_handle, char *id) |
static void | _bootstrap_recv_handler (void *handle, const aiot_mqtt_recv_t *packet, void *userdata) |
static int32_t | _bootstrap_operate_topic_map (bootstrap_handle_t *bootstrap_handle, aiot_mqtt_option_t option) |
static void | _bootstrap_core_mqtt_process_handler (void *context, aiot_mqtt_event_t *event, core_mqtt_event_t *core_event) |
static int32_t | _bootstrap_core_mqtt_operate_process_handler (bootstrap_handle_t *bootstrap_handle, core_mqtt_option_t option) |
void * | aiot_bootstrap_init (void) |
初始化bootstrap实例并设置默认参数 更多... | |
int32_t | aiot_bootstrap_setopt (void *handle, aiot_bootstrap_option_t option, void *data) |
设置bootstrap参数 更多... | |
int32_t | aiot_bootstrap_deinit (void **handle) |
释放bootstrap实例句柄的资源 更多... | |
int32_t | aiot_bootstrap_send_request (void *handle) |
向bootstrap服务器发送请求 更多... | |
int32_t | aiot_bootstrap_recv (void *handle) |
从bootstrap服务器接收应答 更多... | |
Bootstrap模块的API接口实现, 提供获取阿里云物联网平台连接信息的能力
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
void* aiot_bootstrap_init | ( | void | ) |
初始化bootstrap实例并设置默认参数
非NULL | bootstrap实例句柄 |
NULL | 初始化失败, 一般是内存分配失败导致 |
int32_t aiot_bootstrap_setopt | ( | void * | handle, |
aiot_bootstrap_option_t | option, | ||
void * | data | ||
) |
设置bootstrap参数
[in] | handle | bootstrap句柄 |
[in] | option | 配置选项, 更多信息请参考aiot_bootstrap_option_t |
[in] | data | 配置选项数据, 更多信息请参考aiot_bootstrap_option_t |
<STATE_SUCCESS | 参数设置失败 |
>=STATE_SUCCESS | 参数设置成功 |
int32_t aiot_bootstrap_deinit | ( | void ** | handle | ) |
释放bootstrap实例句柄的资源
[in] | handle | 指向bootstrap实例句柄的指针 |
<STATE_SUCCESS | 执行失败 |
>=STATE_SUCCESS | 执行成功 |
int32_t aiot_bootstrap_send_request | ( | void * | handle | ) |
向bootstrap服务器发送请求
handle | bootstrap句柄 |
<STATE_SUCCESS | 请求发送失败 |
>=STATE_SUCCESS | 请求发送成功 |
int32_t aiot_bootstrap_recv | ( | void * | handle | ) |
从bootstrap服务器接收应答
handle | bootstrap句柄 |
<STATE_SUCCESS | 数据接收失败 |
>=STATE_SUCCESS | 数据接收成功 |