TCP连接四元组:
source_ip;source_port;destination_ip;destination_port
任意1个不同,都是1个新的TCP套接字。
server accept一个新连接后,会创建1个TCP socket,包含了四元组信息,这个socket实际上继承了listener端口的socket块,所以使用的destination_ip;destination_port就是服务端的ip和监听端口。
http://www.ideawu.net/blog/archives/533.html
https://stackoverflow.com/questions/489036/how-does-the-socket-api-accept-function-work