You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cores/esp32/Udp.h
+1
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ class UDP: public Stream
43
43
44
44
public:
45
45
virtualuint8_tbegin(uint16_t) =0; // initialize, start listening on specified port. Returns 1 if successful, 0 if there are no sockets available to use
46
+
virtualuint8_tbeginMulticast(IPAddress, uint16_t) { return0; } // initialize, start listening on specified multicast IP address and port. Returns 1 if successful, 0 on failure
46
47
virtualvoidstop() =0; // Finish with the UDP socket
0 commit comments