Add 'fromString(const char*)', 'fromString(const String)' to IPAddress class (#68)

This commit is contained in:
Drake Youngkun Min
2016-11-24 16:46:11 +09:00
committed by Me No Dev
parent 67fd652177
commit d8b2290313
2 changed files with 44 additions and 0 deletions

View File

@ -51,6 +51,9 @@ public:
IPAddress(const uint8_t *address);
virtual ~IPAddress() {}
bool fromString(const char *address);
bool fromString(const String &address) { return fromString(address.c_str()); }
// Overloaded cast operator to allow IPAddress objects to be used where a pointer
// to a four-byte uint8_t array is expected
operator uint32_t() const