码迷,mamicode.com
首页 > 编程语言 > 详细

带错误处理的python socket server服务范例的代码

时间:2019-08-14 23:44:20      阅读:131      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!