2015-06-02 05:06:40 +00:00
|
|
|
/* http_get - Retrieves a web page over HTTP GET.
|
|
|
|
*
|
|
|
|
* See http_get_ssl for a TLS-enabled version.
|
|
|
|
*
|
|
|
|
* This sample code is in the public domain.,
|
|
|
|
*/
|
2015-05-12 00:12:50 +00:00
|
|
|
#include "espressif/esp_common.h"
|
2015-10-06 12:04:19 +00:00
|
|
|
#include "esp/uart.h"
|
2015-05-07 06:57:58 +00:00
|
|
|
|
2015-06-16 00:02:36 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2015-05-07 06:57:58 +00:00
|
|
|
#include "FreeRTOS.h"
|
|
|
|
#include "task.h"
|
|
|
|
|
2015-05-12 00:12:50 +00:00
|
|
|
#include "lwip/err.h"
|
2015-05-07 06:57:58 +00:00
|
|
|
#include "lwip/sockets.h"
|
2015-05-12 00:12:50 +00:00
|
|
|
#include "lwip/sys.h"
|
2015-05-07 06:57:58 +00:00
|
|
|
#include "lwip/netdb.h"
|
2015-05-12 00:12:50 +00:00
|
|
|
#include "lwip/dns.h"
|
2015-05-07 06:57:58 +00:00
|
|
|
|
2015-07-28 21:56:47 +00:00
|
|
|
#include "ssid_config.h"
|
|
|
|
|
2017-06-06 02:47:21 +00:00
|
|
|
#define WEB_SERVER "ipv6.google.com"
|
2015-05-07 06:57:58 +00:00
|
|
|
#define WEB_PORT 80
|
2017-06-06 02:47:21 +00:00
|
|
|
#define WEB_PATH "/"
|
2015-05-07 06:57:58 +00:00
|
|
|
|
|
|
|
void http_get_task(void *pvParameters)
|
|
|
|
{
|
|
|
|
int successes = 0, failures = 0;
|
|
|
|
printf("HTTP get task starting...\r\n");
|
|
|
|
|
|
|
|
while(1) {
|
2015-06-08 23:00:32 +00:00
|
|
|
const struct addrinfo hints = {
|
2017-06-06 02:47:21 +00:00
|
|
|
.ai_family = AF_UNSPEC,
|
2015-06-08 23:00:32 +00:00
|
|
|
.ai_socktype = SOCK_STREAM,
|
|
|
|
};
|
|
|
|
struct addrinfo *res;
|
|
|
|
|
|
|
|
printf("Running DNS lookup for %s...\r\n", WEB_SERVER);
|
|
|
|
int err = getaddrinfo(WEB_SERVER, "80", &hints, &res);
|
|
|
|
|
2017-06-06 02:47:21 +00:00
|
|
|
if (err != 0 || res == NULL) {
|
2015-06-08 23:00:32 +00:00
|
|
|
printf("DNS lookup failed err=%d res=%p\r\n", err, res);
|
|
|
|
if(res)
|
|
|
|
freeaddrinfo(res);
|
2016-11-05 10:04:03 +00:00
|
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
2015-06-08 23:00:32 +00:00
|
|
|
failures++;
|
|
|
|
continue;
|
|
|
|
}
|
2017-06-06 02:47:21 +00:00
|
|
|
|
2017-08-19 04:52:56 +00:00
|
|
|
#if LWIP_IPV6
|
2017-06-06 02:47:21 +00:00
|
|
|
{
|
|
|
|
struct netif *netif = sdk_system_get_netif(0);
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < LWIP_IPV6_NUM_ADDRESSES; i++) {
|
|
|
|
printf(" ip6 %d state %x\n", i, netif_ip6_addr_state(netif, i));
|
|
|
|
if (!ip6_addr_isinvalid(netif_ip6_addr_state(netif, i)))
|
|
|
|
printf(" ip6 addr %d = %s\n", i, ip6addr_ntoa(netif_ip6_addr(netif, i)));
|
|
|
|
}
|
|
|
|
}
|
2017-08-19 04:52:56 +00:00
|
|
|
#endif
|
2017-06-06 02:47:21 +00:00
|
|
|
|
|
|
|
struct sockaddr *sa = res->ai_addr;
|
|
|
|
if (sa->sa_family == AF_INET) {
|
|
|
|
printf("DNS lookup succeeded. IP=%s\r\n", inet_ntoa(((struct sockaddr_in *)sa)->sin_addr));
|
|
|
|
}
|
2017-08-19 04:52:56 +00:00
|
|
|
#if LWIP_IPV6
|
2017-06-06 02:47:21 +00:00
|
|
|
if (sa->sa_family == AF_INET6) {
|
|
|
|
printf("DNS lookup succeeded. IP=%s\r\n", inet6_ntoa(((struct sockaddr_in6 *)sa)->sin6_addr));
|
|
|
|
}
|
2017-08-19 04:52:56 +00:00
|
|
|
#endif
|
2015-06-08 23:00:32 +00:00
|
|
|
|
|
|
|
int s = socket(res->ai_family, res->ai_socktype, 0);
|
|
|
|
if(s < 0) {
|
|
|
|
printf("... Failed to allocate socket.\r\n");
|
|
|
|
freeaddrinfo(res);
|
2016-11-05 10:04:03 +00:00
|
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
2015-06-08 23:00:32 +00:00
|
|
|
failures++;
|
|
|
|
continue;
|
|
|
|
}
|
2015-05-07 06:57:58 +00:00
|
|
|
|
|
|
|
printf("... allocated socket\r\n");
|
|
|
|
|
|
|
|
if(connect(s, res->ai_addr, res->ai_addrlen) != 0) {
|
|
|
|
close(s);
|
2015-06-08 23:00:32 +00:00
|
|
|
freeaddrinfo(res);
|
2015-05-07 06:57:58 +00:00
|
|
|
printf("... socket connect failed.\r\n");
|
2016-11-05 10:04:03 +00:00
|
|
|
vTaskDelay(4000 / portTICK_PERIOD_MS);
|
2015-06-08 23:00:32 +00:00
|
|
|
failures++;
|
2015-05-07 06:57:58 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("... connected\r\n");
|
2015-06-08 23:00:32 +00:00
|
|
|
freeaddrinfo(res);
|
2015-05-07 06:57:58 +00:00
|
|
|
|
2015-06-08 23:00:32 +00:00
|
|
|
const char *req =
|
2017-06-06 02:47:21 +00:00
|
|
|
"GET "WEB_PATH" HTTP/1.1\r\n"
|
|
|
|
"Host: "WEB_SERVER"\r\n"
|
2015-06-08 23:00:32 +00:00
|
|
|
"User-Agent: esp-open-rtos/0.1 esp8266\r\n"
|
2017-06-06 02:47:21 +00:00
|
|
|
"Connection: close\r\n"
|
2015-06-08 23:00:32 +00:00
|
|
|
"\r\n";
|
2015-06-08 23:03:56 +00:00
|
|
|
if (write(s, req, strlen(req)) < 0) {
|
2015-05-07 06:57:58 +00:00
|
|
|
printf("... socket send failed\r\n");
|
2015-06-08 23:00:32 +00:00
|
|
|
close(s);
|
2016-11-05 10:04:03 +00:00
|
|
|
vTaskDelay(4000 / portTICK_PERIOD_MS);
|
2015-06-08 23:00:32 +00:00
|
|
|
failures++;
|
|
|
|
continue;
|
2015-05-07 06:57:58 +00:00
|
|
|
}
|
|
|
|
printf("... socket send success\r\n");
|
|
|
|
|
2015-06-08 23:00:32 +00:00
|
|
|
static char recv_buf[128];
|
|
|
|
int r;
|
|
|
|
do {
|
|
|
|
bzero(recv_buf, 128);
|
|
|
|
r = read(s, recv_buf, 127);
|
|
|
|
if(r > 0) {
|
|
|
|
printf("%s", recv_buf);
|
|
|
|
}
|
|
|
|
} while(r > 0);
|
|
|
|
|
|
|
|
printf("... done reading from socket. Last read return=%d errno=%d\r\n", r, errno);
|
|
|
|
if(r != 0)
|
|
|
|
failures++;
|
|
|
|
else
|
|
|
|
successes++;
|
|
|
|
close(s);
|
|
|
|
printf("successes = %d failures = %d\r\n", successes, failures);
|
|
|
|
for(int countdown = 10; countdown >= 0; countdown--) {
|
|
|
|
printf("%d... ", countdown);
|
2016-11-05 10:04:03 +00:00
|
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
2015-06-08 23:00:32 +00:00
|
|
|
}
|
|
|
|
printf("\r\nStarting again!\r\n");
|
2015-05-07 06:57:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void user_init(void)
|
|
|
|
{
|
2015-10-06 12:04:19 +00:00
|
|
|
uart_set_baud(0, 115200);
|
2015-05-30 09:11:04 +00:00
|
|
|
printf("SDK version:%s\n", sdk_system_get_sdk_version());
|
2015-05-07 06:57:58 +00:00
|
|
|
|
2015-05-30 09:11:04 +00:00
|
|
|
struct sdk_station_config config = {
|
2015-06-08 23:00:32 +00:00
|
|
|
.ssid = WIFI_SSID,
|
|
|
|
.password = WIFI_PASS,
|
2015-05-07 06:57:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* required to call wifi_set_opmode before station_set_config */
|
2015-05-30 09:11:04 +00:00
|
|
|
sdk_wifi_set_opmode(STATION_MODE);
|
|
|
|
sdk_wifi_station_set_config(&config);
|
2015-05-07 06:57:58 +00:00
|
|
|
|
2017-06-06 02:47:21 +00:00
|
|
|
xTaskCreate(&http_get_task, "get_task", 384, NULL, 2, NULL);
|
2015-05-07 06:57:58 +00:00
|
|
|
}
|
|
|
|
|