Home
last modified time | relevance | path

Searched refs:mqtt_client_connect (Results 1 - 3 of 3) sorted by relevance

/third_party/lwip/src/include/lwip/apps/
H A Dmqtt.h119 * calling mqtt_client_connect() or when connection is closed by server or an error
176 err_t mqtt_client_connect(mqtt_client_t *client, const ip_addr_t *ipaddr, u16_t port, mqtt_connection_cb_t cb, void *arg,
/third_party/lwip/test/unit/mqtt/
H A Dtest_mqtt.c90 err = mqtt_client_connect(client, &test_mqtt_remote_ip, 1234, test_mqtt_connection_cb, NULL, &client_info); in START_TEST()
/third_party/lwip/src/apps/mqtt/
H A Dmqtt.c1282 mqtt_client_connect(mqtt_client_t *client, const ip_addr_t *ip_addr, u16_t port, mqtt_connection_cb_t cb, void *arg, in mqtt_client_connect() function
1294 LWIP_ASSERT("mqtt_client_connect: client != NULL", client != NULL); in mqtt_client_connect()
1295 LWIP_ASSERT("mqtt_client_connect: ip_addr != NULL", ip_addr != NULL); in mqtt_client_connect()
1296 LWIP_ASSERT("mqtt_client_connect: client_info != NULL", client_info != NULL); in mqtt_client_connect()
1297 LWIP_ASSERT("mqtt_client_connect: client_info->client_id != NULL", client_info->client_id != NULL); in mqtt_client_connect()
1300 LWIP_DEBUGF(MQTT_DEBUG_WARN, ("mqtt_client_connect: Already connected\n")); in mqtt_client_connect()
1319 LWIP_ERROR("mqtt_client_connect: client_info->will_topic length overflow", len <= 0xFF, return ERR_VAL); in mqtt_client_connect()
1320 LWIP_ERROR("mqtt_client_connect: client_info->will_topic length must be > 0", len > 0, return ERR_VAL); in mqtt_client_connect()
1323 LWIP_ERROR("mqtt_client_connect: client_info->will_msg length overflow", len <= 0xFF, return ERR_VAL); in mqtt_client_connect()
1326 LWIP_ERROR("mqtt_client_connect in mqtt_client_connect()
[all...]

Completed in 3 milliseconds