Constructors
| 19 | public: |
| 20 | // Constructors |
| 21 | IPAddress() { _address.dword = 0; } |
| 22 | IPAddress(uint8_t first_octet, uint8_t second_octet, uint8_t third_octet, uint8_t fourth_octet) { |
| 23 | _address.bytes[0] = first_octet; |
| 24 | _address.bytes[1] = second_octet; |
nothing calls this directly
no outgoing calls
no test coverage detected