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-remote-side-socket-close), I wonder why it is impossible in Java, without attempting reading/writing …
10
votes
9answers
578 views
What is the best way to pass information from java to c++?
I have a java application I need to pass some info to a C++ program. It has been suggested that I use some simple socket programming to do this. Is this the best way? If not what are the …
9
votes
11answers
2k views
What do you use when you need reliable UDP?
If you have a situation where a TCP connection is potentially too slow and a UDP 'connection' is potentially too unreliable what do you use? There are various standard reliable UDP protocols out …
9
votes
5answers
811 views
What kind of issues are there in implementing realtime multiplayer games
I have some experience making multiplayer turn-based games using sockets, but I've never attempted a realtime action game. What kind of extra issues would I have to deal with? Do I need to keep a …
8
votes
7answers
495 views
Is it better to send 1 large chunk or lots of small ones when using TCP?
After I accept() a connection, and then write() to the client socket, is it better to write all the data you intend to send at once or send it in chunks?
For example:
accept, write 1MB, …
8
votes
4answers
2k views
How much overhead does SSL impose?
I know there's no single hard-and-fast answer, but is there a generic order-of-magnitude estimate approximation for the encryption overhead of SSL versus unencrypted socket communication? I'm talking …
8
votes
4answers
788 views
How Do Sockets Work in C?
I am a bit confused about socket programming in C.
You create a socket, bind it to an interface and an IP address and get it to listen. I found a couple of web resources on that, and understood it …
7
votes
6answers
401 views
Why does the Flash Player throw a sandbox error in this case?
I get a Flex 3 sandbox error #2048 after connecting to a Socket on a Java (1.5) server. The server code is all mine, i.e. not running under Apache.
The sequence is as follows...
1 Java server …
7
votes
4answers
225 views
Is there a way to get non-locking stream insertion/extraction on basic_iostream in Windows?
I'm a C++ developer who has primarily programmed on Solaris and Linux until recently, when I was forced to create an application targeted to Windows.
I've been using a communication design based on …
7
votes
11answers
617 views
What should i know about UDP programming?
I don't mean how to connect to a socket. What should I know about UDP programming?
Do I need to worry about bad data in my socket?
I should assume if I send 200bytes I may get 120 and 60 bytes …
7
votes
2answers
1k views
How can I check whether a (TCP) socket is (dis)connected in C#?
How should I check a (TCP) socket to find out whether it is connected?
I have read about the Socket.Connected property in MSDN, but it says it only shows the state according to the last I/O. This …
7
votes
3answers
551 views
c# stream received all data?
I'm using C#.Net and the Socket class from the System.Net.Sockets namespace. I'm using the asynchronous receive methods. I understand this can be more easily done with something like a web service; …
7
votes
4answers
2k views
Multi-client, async sockets in c#, best practices?
I am trying to gain a better understanding of tcp/ip sockets in c#, as i want to challenge myself to see if i can create a working MMO infrastructure (game world, map, players, etc) purely for …
7
votes
5answers
732 views
How do I determine all of my IP addresses when I have multiple NICs?
I have multiple Network Interface Cards on my computer, each with its own IP address.
When I use gethostbyname(gethostname()) from Python's (built-in) socket module, it will only return one of them. …
7
votes
11answers
458 views
Free Network Monitor
I am having trouble integrating two products, one of which is mine and they appear not to be talking. So I want to make sure they are communicating correctly. I had a look around for network monitor …
