Search Results

2
votes

Test to see if a socket is open in linux

How about a loop where you read the commands: setup_socket(); while(1) { listen(); newfile_descriptor = accept(); int command command = read(newfile_descriptor,&com …
0
votes

check status of one port on remote host

nc or 'netcat' also has a scan mode which may be of use. …