Please stop me before I make a big mistake :) - I'm trying to write a simple multi-player quiz game for Android phones to get some experience writing server code.
I have ...
In my application, there's a module that uses ServerSocket to listen for incoming TCP connections. When I switched a client to use UDP, I expected to receive data anyway, but I ...
I understand from earlier SO posts, that you need multiple process (when each process has the same IP) to connect to a ServerSocket. Is this correct?
Then how does a webserver work ...
When experience with Netty, I was surprised that when I use reuseAddress option, it allow a ServerSocket to bind to the same address without raise an "already bind exception"
I am kind of new to Java socket programing, I am trying to make a Java client/server code where the server will ask the client to pick a topic from two ...
The context: I have a table of banned ip adresses, due to DOS attacks, in a collection somewhere in the memory of my program.
I use a TCP server socket, accepting every ...