Hi all,
I have a quick question for you all about ServerSockets, as I am trying to get an improved understanding of how this feature works.
I am correct in my understanding that when a client makes a connection to a ServerSocket (for example on port 7500), that the ServerSocket will connect them to TCPSocket connection? Is this correct?
Does the ServerSocket then configure the TCPSocket’s connection, so that it knows which IP address to reply to, what port to communicate on, etc?
From what I am seeing, it looks like a connection comes into the ServerSocket, the AddSocket creates a pool of available connections, and then … I guess I am trying to figure out what’s next and how the actual connection is made.
Thank you!
Byron