We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67ac709 commit 684d302Copy full SHA for 684d302
cores/esp32/IPAddress.h
@@ -57,8 +57,7 @@ class IPAddress: public Printable
57
IPAddress(uint32_t address) { *this = address; }
58
IPAddress(int address) { *this = address; }
59
IPAddress(const uint8_t *address) { *this = address; }
60
- IPAddress(IPType type, const uint8_t *address);
61
- IPAddress(IPType type, const uint8_t *address, uint8_t zone);
+ IPAddress(IPType type, const uint8_t *address, uint8_t zone = 0);
62
63
bool fromString(const char *address);
64
bool fromString(const String &address) { return fromString(address.c_str()); }
0 commit comments