Merge pull request #4778 from esphome/bump-2023.4.4

2023.4.4
This commit is contained in:
Jesse Hills 2023-05-04 11:31:40 +12:00 committed by GitHub
commit 2f78c4acfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 5 deletions

View File

@ -7,6 +7,8 @@
namespace esphome {
namespace socket {
Socket::~Socket() {}
std::unique_ptr<Socket> socket_ip(int type, int protocol) {
#if LWIP_IPV6
return socket(AF_INET6, type, protocol);

View File

@ -11,7 +11,7 @@ namespace socket {
class Socket {
public:
Socket() = default;
virtual ~Socket() = default;
virtual ~Socket();
Socket(const Socket &) = delete;
Socket &operator=(const Socket &) = delete;
@ -34,7 +34,7 @@ class Socket {
virtual ssize_t readv(const struct iovec *iov, int iovcnt) = 0;
virtual ssize_t write(const void *buf, size_t len) = 0;
virtual ssize_t writev(const struct iovec *iov, int iovcnt) = 0;
virtual ssize_t sendto(const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen);
virtual ssize_t sendto(const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen) = 0;
virtual int setblocking(bool blocking) = 0;
virtual int loop() { return 0; };

View File

@ -1,6 +1,6 @@
"""Constants used by esphome."""
__version__ = "2023.4.3"
__version__ = "2023.4.4"
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"

View File

@ -1,8 +1,9 @@
#pragma once
#include <string>
#include <iterator>
#include <cstring>
#include <iterator>
#include <memory>
#include <string>
#include "esphome/core/defines.h"
#ifdef USE_JSON