2022-07-22 14:31:50 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
|
|
*/
|
|
|
|
#include "sdkconfig.h"
|
2018-10-02 10:33:16 -04:00
|
|
|
#include <string.h>
|
2022-07-22 14:31:50 -04:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <netdb.h> // struct addrinfo
|
|
|
|
#include <arpa/inet.h>
|
2019-08-31 10:19:21 -04:00
|
|
|
#include "esp_netif.h"
|
2022-07-22 14:31:50 -04:00
|
|
|
#include "esp_log.h"
|
|
|
|
#if defined(CONFIG_EXAMPLE_SOCKET_IP_INPUT_STDIN)
|
2020-03-17 15:30:33 -04:00
|
|
|
#include "addr_from_stdin.h"
|
2022-07-22 14:31:50 -04:00
|
|
|
#endif
|
2018-10-02 10:33:16 -04:00
|
|
|
|
2020-03-17 15:30:33 -04:00
|
|
|
#if defined(CONFIG_EXAMPLE_IPV4)
|
2018-10-02 10:33:16 -04:00
|
|
|
#define HOST_IP_ADDR CONFIG_EXAMPLE_IPV4_ADDR
|
2022-07-22 14:31:50 -04:00
|
|
|
#elif defined(CONFIG_EXAMPLE_SOCKET_IP_INPUT_STDIN)
|
2020-03-17 15:30:33 -04:00
|
|
|
#define HOST_IP_ADDR ""
|
2018-10-02 10:33:16 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PORT CONFIG_EXAMPLE_PORT
|
|
|
|
|
|
|
|
static const char *TAG = "example";
|
|
|
|
static const char *payload = "Message from ESP32 ";
|
|
|
|
|
2022-07-22 14:31:50 -04:00
|
|
|
|
|
|
|
void tcp_client(void)
|
2018-10-02 10:33:16 -04:00
|
|
|
{
|
|
|
|
char rx_buffer[128];
|
2020-03-17 15:30:33 -04:00
|
|
|
char host_ip[] = HOST_IP_ADDR;
|
|
|
|
int addr_family = 0;
|
|
|
|
int ip_protocol = 0;
|
2018-10-02 10:33:16 -04:00
|
|
|
|
|
|
|
while (1) {
|
2020-03-17 15:30:33 -04:00
|
|
|
#if defined(CONFIG_EXAMPLE_IPV4)
|
2018-11-20 11:41:08 -05:00
|
|
|
struct sockaddr_in dest_addr;
|
2022-07-22 14:31:50 -04:00
|
|
|
inet_pton(AF_INET, host_ip, &dest_addr.sin_addr);
|
2018-11-20 11:41:08 -05:00
|
|
|
dest_addr.sin_family = AF_INET;
|
|
|
|
dest_addr.sin_port = htons(PORT);
|
2018-10-02 10:33:16 -04:00
|
|
|
addr_family = AF_INET;
|
|
|
|
ip_protocol = IPPROTO_IP;
|
2020-03-17 15:30:33 -04:00
|
|
|
#elif defined(CONFIG_EXAMPLE_SOCKET_IP_INPUT_STDIN)
|
2021-01-18 06:16:06 -05:00
|
|
|
struct sockaddr_storage dest_addr = { 0 };
|
2020-03-17 15:30:33 -04:00
|
|
|
ESP_ERROR_CHECK(get_addr_from_stdin(PORT, SOCK_STREAM, &ip_protocol, &addr_family, &dest_addr));
|
2018-10-02 10:33:16 -04:00
|
|
|
#endif
|
2022-07-22 14:31:50 -04:00
|
|
|
|
2018-10-02 10:33:16 -04:00
|
|
|
int sock = socket(addr_family, SOCK_STREAM, ip_protocol);
|
|
|
|
if (sock < 0) {
|
|
|
|
ESP_LOGE(TAG, "Unable to create socket: errno %d", errno);
|
|
|
|
break;
|
|
|
|
}
|
2020-03-17 15:30:33 -04:00
|
|
|
ESP_LOGI(TAG, "Socket created, connecting to %s:%d", host_ip, PORT);
|
2018-10-02 10:33:16 -04:00
|
|
|
|
2022-07-22 14:31:50 -04:00
|
|
|
int err = connect(sock, (struct sockaddr *)&dest_addr, sizeof(dest_addr));
|
2018-10-02 10:33:16 -04:00
|
|
|
if (err != 0) {
|
|
|
|
ESP_LOGE(TAG, "Socket unable to connect: errno %d", errno);
|
2019-02-21 03:25:07 -05:00
|
|
|
break;
|
2018-10-02 10:33:16 -04:00
|
|
|
}
|
|
|
|
ESP_LOGI(TAG, "Successfully connected");
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
int err = send(sock, payload, strlen(payload), 0);
|
|
|
|
if (err < 0) {
|
2018-11-20 11:41:08 -05:00
|
|
|
ESP_LOGE(TAG, "Error occurred during sending: errno %d", errno);
|
2018-10-02 10:33:16 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
int len = recv(sock, rx_buffer, sizeof(rx_buffer) - 1, 0);
|
2018-11-20 11:41:08 -05:00
|
|
|
// Error occurred during receiving
|
2018-10-02 10:33:16 -04:00
|
|
|
if (len < 0) {
|
|
|
|
ESP_LOGE(TAG, "recv failed: errno %d", errno);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Data received
|
|
|
|
else {
|
|
|
|
rx_buffer[len] = 0; // Null-terminate whatever we received and treat like a string
|
2020-03-17 15:30:33 -04:00
|
|
|
ESP_LOGI(TAG, "Received %d bytes from %s:", len, host_ip);
|
2018-10-02 10:33:16 -04:00
|
|
|
ESP_LOGI(TAG, "%s", rx_buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sock != -1) {
|
|
|
|
ESP_LOGE(TAG, "Shutting down socket and restarting...");
|
|
|
|
shutdown(sock, 0);
|
|
|
|
close(sock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|