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 TCP.send and tcp_send, there should be TCP.recv and TCP::Mixin#tcp_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 TCP.banner and tcp_banner, but it reads the whole packet of data and doesn't stop at the first newline.
To compliment
TCP.send
andtcp_send
, there should beTCP.recv
andTCP::Mixin#tcp_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 toTCP.banner
andtcp_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: