python网络编程中常用到的函数总结
总结一下python网络编程中常用到的函数
socket.getservbyname(servicename[, protocolname]) –> integer
查询某个协议对应的端标语,需要利用两个参数,servicename对应端口名称,如 http, smtp,等。protocolname对应tcp,udp。
s.getsockname() s.getpeername()
getsockname: Return the address of the local endpoint. For IP sockets, the address info is a pair (hostaddr, port)
getpeername: Return the address of the remote endpoint. For IP sockets, the address info is a pair (hostaddr, port).
Socket的异常
与一般I/O和通信问题有关的 socket.error
与查询地点信息有关的 socket.gaierror
与其他地点错误有关的 socket.herror
与在一个socket上挪用settimeout()后,处理惩罚超时有关的socket.timeout
利用connect()的挪用的时候,措施可以办理把主机名转换成IP地点的问题,若主机名差池会发生socket.gaierror,若毗连长途主机有问题,会发生socket.error。