domain描述如下: The domain argument specifies a communication domain; this selects the protocol family which will be used for communication. These families are defined in . The currently understood formats include: Name Purpose Man page AF_UNIX, AF_LOCA
一:Socket
为了让两个程序通过网络进行通信,二者均必须使用socket套接字。
socket用于描述IP地址和端口,是一个通信链的句柄,可以用来实现不同虚拟机或不同计算机之间的通信。
使用socket模块中的socket函数:
s = socket.socket(AddressFamily,Type)
AddressFamily:可以选择 ① AF_INET(用于Internet进程间的通信)
② AF_UNIX(用于同一台机器进程间的通信)