Search Results

0
votes

Java sockets - asynchronous wait, synchronous read

In sockets programming the data may come in as arbitrary chunks depending upon the interaction between the sending system, intermediate links and how your OS treats PSH flags. You'll need to put a …
1
vote

What does it mean to flush a socket?

Nagle's algorithm is often in use on sockets. In a nutshell, it waits until there's a non-trivial amount of data to send. The problem is to achieve a balance between transmission latency and the …
5
votes

How to enumerate all IP addresses attached to a machine, in POSIX C?

This can only be done in an operating system dependent fashion. You could try parsing the output of 'iptables', but the right answer for linux is to use ioctl. …
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 …