Search Results

18
votes
8answers
2k views

Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?

As a follow up to a recent question (http://stackoverflow.com/questions/151590/java-how-do-detect-a …
0
votes

How should one go about choosing a default TCP/IP port for a new service?

Choose a default port that doesn't interfere with the most common daemons and servers. Also make sure that the port number isn't listed as an attack vector for some virus -- some companies have str …
1
vote

Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?

Since none of the answers so far fully answer the question, I'm summarizing my current understanding of the issue. When a TCP connection is established and one peer calls close() …
4
votes

TCP connection quality in .NET

Firstly, you should inspect the details of the SocketExceptions you're getting. I don't know what they contain in .Net, but in Java the detailed message provides a useful hint, such as "Connection …
1
vote

What causes a TCP/IP reset (RST) flag to be sent?

Run a packet sniffer (e.g., Wireshark) also on the peer to see whether it's the peer who's sending the RST or someone in the middle. …
5
votes

PostgreSQL UNIX domain sockets vs TCP sockets

UNIX domain sockets should offer better performance than TCP sockets over loopback interface (less copying of data, fewer context switches), but I don't know whether the performance increase can be …
0
votes

I need a TCP option (ioctl) to send data immediately.

In the worst case scenario you could go one level lower (raw sockets), where you have better control over the packets sent, but then you'd have to deal with all the nitty-gritty of TCP. …