8000 Add 16 octet constructor · libretiny-eu/ArduinoCore-API@d7d6fe7 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d7d6fe7

Browse files
committed
Add 16 octet constructor
1 parent 71773a5 commit d7d6fe7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

api/IPAddress.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class IPAddress : public Printable {
6363
IPAddress(); // IPv4
6464
IPAddress(IPType ip_type);
6565
IPAddress(uint8_t first_octet, uint8_t second_octet, uint8_t third_octet, uint8_t fourth_octet);
66+
IPAddress(uint8_t o1, uint8_t o2, uint8_t o3, uint8_t o4, uint8_t o5, uint8_t o6, uint8_t o7, uint8_t o8, uint8_t o9, uint8_t o10, uint8_t o11, uint8_t o12, uint8_t o13, uint8_t o14, uint8_t o15, uint8_t o16);
6667
IPAddress(uint32_t address); // IPv4 only; see implementation note
6768
IPAddress(const uint8_t *address); // IPv4
6869
IPAddress(IPType ip_type, const uint8_t *address);

0 commit comments

Comments
 (0)
0