23
votes
15answers
2k views
How to write a scalable Tcp/Ip based server
I am in the design phase of writing a new Windows Service application that accepts TCP/IP connections for long running connections (i.e. this is not like HTTP where there are many short connections, …
23
votes
16answers
4k views
What is the difference between a port and a socket?
This was a question raised by one of the software engineers in my organisation. I'm interested in the broadest definition.
17
votes
16answers
1k views
When is it appropriate to use UDP instead of TCP?
Since TCP guarantees packet delivery and thus can be considered "reliable", whereas UDP doesn't guarantee anything and packets can be lost, what would the advantage be of transmitting data using UDP …
17
votes
20answers
5k views
Best C/C++ Network Library
I haven't done work in C/C++ for a little bit and was just wondering what people's favorite cross platform libraries are to use.
I'm looking for something that is a good quick and dirty library as …
16
votes
5answers
1k views
How can you find out which process is listening on a port on Windows?
How can you find out which process is listening on a port on Windows?
15
votes
7answers
625 views
A clean, lightweight alternative to Python’s twisted?
A (long) while ago I wrote a web-spider that I multithreaded to enable concurrent requests to occur at the same time. That was in my Python youth, in the days before I knew about the GIL and the …
15
votes
2answers
1k views
How do you get the ethernet address using Java?
I would like to retrieve the ethernet address of the network interface that is used to access a particular website.
How can this be done in Java?
Solution Note that the accepted solution of …
12
votes
9answers
980 views
What is the difference between a port and a protocol?
What is the difference between a port and a protocol?
12
votes
1answer
2k views
C# - How do I check for a network connection
What is the best way to determine if there is a network connection available?
12
votes
11answers
563 views
How should one go about choosing a default TCP/IP port for a new service?
When developing an app that will listen on a TCP/IP port, how should one go about selecting a default port? Assume that this app will be installed on many computers, and that avoiding port conflicts …
11
votes
5answers
194 views
Multiplayer Game Syncronization
I've a server/client arcitecture implemented, where all state changes are sent to the function, validated and broadcasted to all clients connected. This works rather well, but the system does not …
10
votes
0answers
3k views
how to throttle bandwidth on a linux network interface [closed]
Is there a way to constrain the bandwidth on a NIC in linux? I'd like to be able to simulate an arbitrarily slow connection.
9
votes
9answers
538 views
Two Computers Finding Each Other over Internet
Given two computers attached to the Internet that know nothing about each other before hand, is it possible for one computer to be able to broadcast a message so that the second computer could receive …
9
votes
6answers
2k views
Finding local IP addresses in Python.
How can I find the local IP address (i.e. 192.168.x.x or 10.0.x.x) in python, preferably with only built-in moduals, I would also like it to be platform independent.
9
votes
6answers
3k views
Windows packet sniffer that can capture loopback traffic?
(This is a followup to my previous question about measuring .NET remoting traffic.)
When I am testing our Windows service / service controller GUI combination, it is often most convenient to run both …
