mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-21 13:33:27 +02:00
ac0d921413
* Socket refactor and SSL * esp-idf temp * Fixes * Echo component and noise * Add noise API transport support * Updates * ESP-IDF * Complete * Fixes * Fixes * Versions update * New i2c APIs * Complete i2c refactor * SPI migration * Revert ESP Preferences migration, too complex for now * OTA support * Remove echo again * Remove ssl again * GPIOFlags updates * Rename esphal and ICACHE_RAM_ATTR * Make ESP32 arduino compilable again * Fix GPIO flags * Complete pin registry refactor and fixes * Fixes to make test1 compile * Remove sdkconfig file * Ignore sdkconfig file * Fixes in reviewing * Make test2 compile * Make test4 compile * Make test5 compile * Run clang-format * Fix lint errors * Use esp-idf APIs instead of btStart * Another round of fixes * Start implementing ESP8266 * Make test3 compile * Guard esp8266 code * Lint * Reformat * Fixes * Fixes v2 * more fixes * ESP-IDF tidy target * Convert ARDUINO_ARCH_ESPxx * Update WiFiSignalSensor * Update time ifdefs * OTA needs millis from hal * RestartSwitch needs delay from hal * ESP-IDF Uart * Fix OTA blank password * Allow setting sdkconfig * Fix idf partitions and allow setting sdkconfig from yaml * Re-add read/write compat APIs and fix esp8266 uart * Fix esp8266 store log strings in flash * Fix ESP32 arduino preferences not initialized * Update ifdefs * Change how sdkconfig change is detected * Add checks to ci-custom and fix them * Run clang-format * Add esp-idf clang-tidy target and fix errors * Fixes from clang-tidy idf round 2 * Fixes from compiling tests with esp-idf * Run clang-format * Switch test5.yaml to esp-idf * Implement ESP8266 Preferences * Lint * Re-do PIO package version selection a bit * Fix arduinoespressif32 package version * Fix unit tests * Lint * Lint fixes * Fix readv/writev not defined * Fix graphing component * Re-add all old options from core/config.py Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
134 lines
3.1 KiB
C
134 lines
3.1 KiB
C
#pragma once
|
|
#include "esphome/core/defines.h"
|
|
|
|
// Helper file to include all socket-related system headers (or use our own
|
|
// definitions where system ones don't exist)
|
|
|
|
#ifdef USE_SOCKET_IMPL_LWIP_TCP
|
|
|
|
#define LWIP_INTERNAL
|
|
#include <sys/types.h>
|
|
#include "lwip/inet.h"
|
|
#include <stdint.h>
|
|
#include <errno.h>
|
|
|
|
/* Address families. */
|
|
#define AF_UNSPEC 0
|
|
#define AF_INET 2
|
|
#define AF_INET6 10
|
|
#define PF_INET AF_INET
|
|
#define PF_INET6 AF_INET6
|
|
#define PF_UNSPEC AF_UNSPEC
|
|
#define IPPROTO_IP 0
|
|
#define IPPROTO_TCP 6
|
|
#define IPPROTO_IPV6 41
|
|
#define IPPROTO_ICMPV6 58
|
|
|
|
#define TCP_NODELAY 0x01
|
|
|
|
#define F_GETFL 3
|
|
#define F_SETFL 4
|
|
#define O_NONBLOCK 1
|
|
|
|
#define SHUT_RD 0
|
|
#define SHUT_WR 1
|
|
#define SHUT_RDWR 2
|
|
|
|
/* Socket protocol types (TCP/UDP/RAW) */
|
|
#define SOCK_STREAM 1
|
|
#define SOCK_DGRAM 2
|
|
#define SOCK_RAW 3
|
|
|
|
#define SO_REUSEADDR 0x0004 /* Allow local address reuse */
|
|
#define SO_KEEPALIVE 0x0008 /* keep connections alive */
|
|
#define SO_BROADCAST 0x0020 /* permit to send and to receive broadcast messages (see IP_SOF_BROADCAST option) */
|
|
|
|
#define SOL_SOCKET 0xfff /* options for socket level */
|
|
|
|
typedef uint8_t sa_family_t;
|
|
typedef uint16_t in_port_t;
|
|
|
|
struct sockaddr_in {
|
|
uint8_t sin_len;
|
|
sa_family_t sin_family;
|
|
in_port_t sin_port;
|
|
struct in_addr sin_addr;
|
|
#define SIN_ZERO_LEN 8
|
|
char sin_zero[SIN_ZERO_LEN];
|
|
};
|
|
|
|
struct sockaddr_in6 {
|
|
uint8_t sin6_len; /* length of this structure */
|
|
sa_family_t sin6_family; /* AF_INET6 */
|
|
in_port_t sin6_port; /* Transport layer port # */
|
|
uint32_t sin6_flowinfo; /* IPv6 flow information */
|
|
struct in6_addr sin6_addr; /* IPv6 address */
|
|
uint32_t sin6_scope_id; /* Set of interfaces for scope */
|
|
};
|
|
|
|
struct sockaddr {
|
|
uint8_t sa_len;
|
|
sa_family_t sa_family;
|
|
char sa_data[14];
|
|
};
|
|
|
|
struct sockaddr_storage {
|
|
uint8_t s2_len;
|
|
sa_family_t ss_family;
|
|
char s2_data1[2];
|
|
uint32_t s2_data2[3];
|
|
uint32_t s2_data3[3];
|
|
};
|
|
typedef uint32_t socklen_t;
|
|
|
|
struct iovec {
|
|
void *iov_base;
|
|
size_t iov_len;
|
|
};
|
|
|
|
#ifdef USE_ESP8266
|
|
// arduino-esp8266 declares a global vars called INADDR_NONE/ANY which are invalid with the define
|
|
#ifdef INADDR_ANY
|
|
#undef INADDR_ANY
|
|
#endif
|
|
#ifdef INADDR_NONE
|
|
#undef INADDR_NONE
|
|
#endif
|
|
|
|
#define ESPHOME_INADDR_ANY ((uint32_t) 0x00000000UL)
|
|
#define ESPHOME_INADDR_NONE ((uint32_t) 0xFFFFFFFFUL)
|
|
#else // !USE_ESP8266
|
|
#define ESPHOME_INADDR_ANY INADDR_ANY
|
|
#define ESPHOME_INADDR_NONE INADDR_NONE
|
|
#endif
|
|
|
|
#endif // USE_SOCKET_IMPL_LWIP_TCP
|
|
|
|
#ifdef USE_SOCKET_IMPL_BSD_SOCKETS
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/uio.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef USE_ARDUINO
|
|
// arduino-esp32 declares a global var called INADDR_NONE which is replaced
|
|
// by the define
|
|
#ifdef INADDR_NONE
|
|
#undef INADDR_NONE
|
|
#endif
|
|
// not defined for ESP32
|
|
typedef uint32_t socklen_t;
|
|
|
|
#define ESPHOME_INADDR_ANY ((uint32_t) 0x00000000UL)
|
|
#define ESPHOME_INADDR_NONE ((uint32_t) 0xFFFFFFFFUL)
|
|
#else // !USE_ESP32
|
|
#define ESPHOME_INADDR_ANY INADDR_ANY
|
|
#define ESPHOME_INADDR_NONE INADDR_NONE
|
|
#endif
|
|
|
|
#endif // USE_SOCKET_IMPL_BSD_SOCKETS
|