I'm trying to understand something. It's networking 101, I'm sure.
Say I have my application server (java, tomcat for the sake of the example, but it doesn't matter if it's really tomcat or not) running on a linux machine. I have 10000 users connected to that application server. Say it's websockets, so the connections are being maintained.
Does each user get a socket at the operating system level for my java application server to respond directly to them? Can I see all of these sockets using netstat?
If not, is there some way I can see them?