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
