in reply to Re: Sending a packet and getting reply.
in thread Sending a packet and getting reply.
1_string = "\x97\x00\x00\x00\xAA\x00\x00\x00" socket = UDPSocket.open socket.send(1_string, 0, target_server, target_port) if select([socket], nil, nil, TIMEOUT) response = socket.recvfrom(10)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Sending a packet and getting reply.
by Corion (Patriarch) on Jan 15, 2014 at 12:22 UTC | |
by Anonymous Monk on Jan 15, 2014 at 12:33 UTC | |
by hippo (Archbishop) on Jan 15, 2014 at 13:45 UTC |