How do high traffic sites service more than 65535 TCP connections?
You misunderstand port numbers: a server listens only on one port and can have large numbers of open sockets from clients connecting to that one port. On the TCP level the tuple (source ip, source port, destination ip, destination port) must be unique for each simultaneous connection. That means a single client cannot open more … Read more