I am new to socket programming and have a couple of questions.
For the context, I have a server and client with each having a socket opened: the socket on the server is bounded to INADDR_ANY
which from my understanding listens to connection requests from any network interface, and the socket on the client-side is connected to a loopback interface for the time being.
With this config, client is connecting to the server through the loopback interface or? I'm trying to visualize how the client server connection is established and how is the client interface used in establishing a connection.
I was able to send a message from the client to the server however I don't see a packet in the wireshark. That shouldn't be the case, no?