标签:ESS str trace boa set 代码 关于 get while
下面的内容段是关于带错误处理的python socket server服务范例的内容,应该是对码农们有用途。import socket, traceback
host = ‘‘
port = 51423
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
s.bind((host, port))
s.listen(1)
while 1:
try:
clientsock, clientaddr = s.accept()
print "Got connection from", clientsock.getpeername()
# Process the request here
# Close the connection
clientsock.close()
except KeyboardInterrupt:
raise
except:
traceback.print_exc()
continue
带错误处理的python socket server服务范例的代码
标签:ESS str trace boa set 代码 关于 get while
原文地址:https://blog.51cto.com/14389287/2429502