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
To compliment UDP.send and udp_send, there should be UDP.recv and UDP::Mixin#udp_recv methods. These methods should call connect with the host and port arguments, then calls .recv(1024) to read the first chunk of data sent through the connection. This method is similar to UDP.banner and udp_banner, but it reads the whole packet of data and doesn't stop at the first newline.
To compliment
UDP.send
andudp_send
, there should beUDP.recv
andUDP::Mixin#udp_recv
methods. These methods should callconnect
with thehost
andport
arguments, then calls.recv(1024)
to read the first chunk of data sent through the connection. This method is similar toUDP.banner
andudp_banner
, but it reads the whole packet of data and doesn't stop at the first newline.The text was updated successfully, but these errors were encountered: