I\'m building a library that maintainces connection over network between apps in c++. During some debuging I have found that some information I get from socket seems incomplete. It is vital this infor
I see a number of connections with CLOSE_WAIT status on my production server, and there are few questions. Please advice.
I am writing a program that fakes TCP requests and collects the data to store in a local buffer. For this, in the system connected to the client i have configured the iptables to keep all the incoming
I want to create small client-server TCP file transfer program. And I have problem with one thing. When I send file from Client to Server, for example a txt file: omg.txt, I want the Server to read th
I am doing some socket programming in python in which I develop a client TCP/IP socket to communicate with a slow embedded device. So sometimes, when the response is supposed to be only one package, i
I wrote an server application in erlang and a client in C#. They communicate through 3 TCP ports. Port numbers are hardcoded. Now I\'d like to do this dynamically. This is my first time doing network
I have a websi开发者_Go百科te and application which use a significant number of connections.It normally has about 3,000 connections statically open, and can receive anywhere from 5,000 to 50,000 conne
I have a tiny little TCP app where many clients connect to a server, send data to it (via write() - they are also sending message size) and then exit. I have the clients send \\0\\0 to the server when
I have the following select call for tcp sockets: ret = select(nfds + 1, &rfds, &rfds开发者_如何学JAVA2, NULL, &tv);
A while back I wrote a little application to implement a TCP Server, but as a newbie to C# .NET I just followed a tutorial. The authorization part of it works fine, but due to following the tutorial t