From 26ae0ac86814be9d949b8912e4c01c05ed19be32 Mon Sep 17 00:00:00 2001 From: Sandeep Mistry Date: Tue, 3 Jan 2017 13:42:24 -0500 Subject: [PATCH] Add virtual beginMulticast(...) stub to UDP class --- hardware/arduino/avr/cores/arduino/Udp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hardware/arduino/avr/cores/arduino/Udp.h b/hardware/arduino/avr/cores/arduino/Udp.h index dc5644b9d..89f31c676 100644 --- a/hardware/arduino/avr/cores/arduino/Udp.h +++ b/hardware/arduino/avr/cores/arduino/Udp.h @@ -41,7 +41,8 @@ class UDP : public Stream { 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 // Sending UDP packets