Answers
- Port 80 is the standard port for HTTP. If a web server is running on the same
computer, then one can't open a server socket on an open port.
- No, a server socket just waits for a connection and yields a regular Socket object
when a client has connected. You use that socket object to read the data that the
client sends.