I have an embedded application that has this requirement:One outgoing TCP network stream need absolute highest priority over all other outgoing network traffic.If there are any packets waiting to be t
Whats the best practice for scalable servers which need to maintain a list of active users? Should I open a persistent TCP Connection for each client on which the server sends update messages?
Our server is seemingly packet based. It is an adaptation from an old serial based system. It has been added, modified, re-built, etc over the years. Since TCP is a stream protocol and not a packet pr
We use an embedded device to send packets from a serial port over a serial-to-Ethernet converter to a server. One manufacturer we use, Moxa, will always send the packets in the same manner which they
When packet loss occurs while in slow开发者_JS百科 start, does the reno/newreno algorithms notice possible dupacks, or is it purely slowstart -> rto?
I\'m writing a TCP server, and at the very heart of it is a fairly standard bind-listen-accept piece of code nicely encapsulated by TcpListener.The code I\'m running in development now works, but I\'m
I\'d like to use iOS device as a TCP client, but I can\'t find an understandable API/guide/sample of how to do that. I tried SimpleNetworkStreams and PictureSharing, but they are both using Bonjour. I
I have an application running on a different machine ....the application needs some info from a windows 7 machine, which is listing on a specific port.
I\'m developing a DLL in C++ which needs to write some data via a (previously established) TCP/IP connection using the write() call. To be precise, the DLL should send a little \'Process 12345 is term
I am building an applicaton in Java that will have some updates over time. This means that the client will have to download a new .jar and use it when available.