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: hardware/esp8266com/esp8266/libraries/ESP8266WiFi/src/WiFiUdp.h
+17-6
Original file line number
Diff line number
Diff line change
@@ -40,9 +40,13 @@ class WiFiUDP : public UDP {
40
40
41
41
operatorbool() const { return _ctx != 0; }
42
42
43
-
virtualuint8_tbegin(uint16_t port); // initialize, start listening on specified port. Returns 1 if successful, 0 if there are no sockets available to use
44
-
virtualvoidstop(); // Finish with the UDP socket
45
-
uint8_tbeginMulticast(IPAddress interfaceAddr, IPAddress multicast, uint16_t port); // connect to a multicast group and listen on the given port
43
+
// initialize, start listening on specified port.
44
+
// Returns 1 if successful, 0 if there are no sockets available to use
45
+
virtualuint8_tbegin(uint16_t port);
46
+
// Finish with the UDP connetion
47
+
virtualvoidstop();
48
+
// join a multicast group and listen on the given port
0 commit comments