Skip to content

Commit 421dd62

Browse files
Merge branch 'main' into config-update
2 parents 0559874 + e97e46c commit 421dd62

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "AsyncTCP",
3-
"version": "3.4.1",
3+
"version": "3.4.2",
44
"description": "Asynchronous TCP Library for ESP32",
55
"keywords": "async,tcp",
66
"repository": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=Async TCP
22
includes=AsyncTCP.h
3-
version=3.4.1
3+
version=3.4.2
44
author=ESP32Async
55
maintainer=ESP32Async
66
sentence=Async TCP Library for ESP32

src/AsyncTCP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ AsyncServer::AsyncServer(IPv6Address addr, uint16_t port) : _port(port), _noDela
15021502
#endif
15031503

15041504
AsyncServer::AsyncServer(uint16_t port) : _port(port), _noDelay(false), _pcb(0), _connect_cb(0), _connect_cb_arg(0) {
1505-
_addr.type = IPADDR_TYPE_V4;
1505+
_addr.type = IPADDR_TYPE_ANY;
15061506
_addr.u_addr.ip4.addr = INADDR_ANY;
15071507
}
15081508

src/AsyncTCPVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ extern "C" {
1212
/** Minor version number (x.X.x) */
1313
#define ASYNCTCP_VERSION_MINOR 4
1414
/** Patch version number (x.x.X) */
15-
#define ASYNCTCP_VERSION_PATCH 1
15+
#define ASYNCTCP_VERSION_PATCH 2
1616

1717
/**
1818
* Macro to convert version number into an integer

0 commit comments

Comments
 (0)