pub unsafe extern "C" fn esp_netif_str_to_ip4(
    src: *const c_char,
    dst: *mut esp_ip4_addr_t
) -> esp_err_t
Expand description

@brief Converts Ascii internet IPv4 address into esp_ip4_addr_t

@param[in] src IPv4 address in ascii representation (e.g. “127.0.0.1”) @param[out] dst Address of the target esp_ip4_addr_t structure to receive converted address @return - ESP_OK on success - ESP_FAIL if conversion failed - ESP_ERR_INVALID_ARG if invalid parameter is passed into