mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-15 12:29:26 +01:00
Add virtual beginMulticast(...) stub to UDP class
This commit is contained in:
parent
cd729a964d
commit
26ae0ac868
@ -42,6 +42,7 @@ class UDP : public Stream {
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
virtual uint8_t begin(uint16_t) =0; // initialize, start listening on specified port. Returns 1 if successful, 0 if there are no sockets available to use
|
virtual uint8_t begin(uint16_t) =0; // initialize, start listening on specified port. Returns 1 if successful, 0 if there are no sockets available to use
|
||||||
|
virtual uint8_t beginMulticast(IPAddress, uint16_t) { return 0; } // initialize, start listening on specified multicast IP address and port. Returns 1 if successful, 0 on failure
|
||||||
virtual void stop() =0; // Finish with the UDP socket
|
virtual void stop() =0; // Finish with the UDP socket
|
||||||
|
|
||||||
// Sending UDP packets
|
// Sending UDP packets
|
||||||
|
Loading…
x
Reference in New Issue
Block a user