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

/seL4-camkes-master/projects/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,
/seL4-camkes-master/projects/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);
/seL4-camkes-master/projects/lwip/src/apps/mqtt/
H A Dmqtt.c1283 mqtt_client_connect(mqtt_client_t *client, const ip_addr_t *ip_addr, u16_t port, mqtt_connection_cb_t cb, void *arg, function
1295 LWIP_ASSERT("mqtt_client_connect: client != NULL", client != NULL);
1296 LWIP_ASSERT("mqtt_client_connect: ip_addr != NULL", ip_addr != NULL);
1297 LWIP_ASSERT("mqtt_client_connect: client_info != NULL", client_info != NULL);
1298 LWIP_ASSERT("mqtt_client_connect: client_info->client_id != NULL", client_info->client_id != NULL);
1301 LWIP_DEBUGF(MQTT_DEBUG_WARN, ("mqtt_client_connect: Already connected\n"));
1320 LWIP_ERROR("mqtt_client_connect: client_info->will_topic length overflow", len <= 0xFF, return ERR_VAL);
1321 LWIP_ERROR("mqtt_client_connect: client_info->will_topic length must be > 0", len > 0, return ERR_VAL);
1324 LWIP_ERROR("mqtt_client_connect: client_info->will_msg length overflow", len <= 0xFF, return ERR_VAL);
1327 LWIP_ERROR("mqtt_client_connect
[all...]

Completed in 70 milliseconds