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.
2 parents 985244a + 0061241 commit 617c4a4Copy full SHA for 617c4a4
libraries/Ethernet/src/EthernetUdp.h
@@ -43,11 +43,13 @@
43
44
class EthernetUDP : public UDP {
45
private:
46
- uint8_t _sock; // socket ID for Wiz5100
47
uint16_t _port; // local port to listen on
48
IPAddress _remoteIP; // remote IP address for the incoming packet whilst it's being processed
49
uint16_t _remotePort; // remote port for the incoming packet whilst it's being processed
50
uint16_t _offset; // offset into the packet being sent
+
51
+protected:
52
+ uint8_t _sock; // socket ID for Wiz5100
53
uint16_t _remaining; // remaining bytes of incoming packet yet to be processed
54
55
public:
0 commit comments