We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c3b27e commit d5ae3faCopy full SHA for d5ae3fa
api/IPAddress.h
@@ -52,6 +52,7 @@ class IPAddress : public Printable {
52
// to a four-byte uint8_t array is expected
53
operator uint32_t() const { return _address.dword; };
54
bool operator==(const IPAddress& addr) const { return _address.dword == addr._address.dword; };
55
+ bool operator!=(const IPAddress& addr) const { return _address.dword != addr._address.dword; };
56
bool operator==(const uint8_t* addr) const;
57
58
// Overloaded index operator to allow getting and setting individual octets of the address
0 commit comments