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 b8d86b3 commit a4c392bCopy full SHA for a4c392b
src/EthernetUdp.cpp
@@ -119,7 +119,7 @@ int EthernetUDP::parsePacket()
119
_remaining = (tmpBuf[0] & (0x7))<<8 | tmpBuf[1];
120
121
if((tmpBuf[0] & W6100_UDP_HEADER_IPV) == W6100_UDP_HEADER_IPV6) {
122
- // IPv6 UDP Recived
+ // IPv6 UDP Received
123
// 0 1
124
// 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
125
// 18 19
@@ -129,7 +129,7 @@ int EthernetUDP::parsePacket()
129
_remoteIP = &tmpBuf[2];
130
_remotePort = (tmpBuf[18]<<8) | tmpBuf[19];
131
} else {
132
- // IPv4 UDP Recived
+ // IPv4 UDP Received
133
134
// 2 3 4 5
135
// 6 7
0 commit comments