当前位置:   article > 正文

python socket断线重连_python socketio的断线重连

python socketio的断线重连
import socket  
import time  
  
HOST = 'localhost'  
PORT = 12345  
BACKLOG = 5  
BUFSIZE = 1024  
RECONN_DELAY = 1  # 断线重连的延迟时间,单位为秒  


s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)  
s.bind((HOST, PORT))  
s.listen(BACKLOG)  
  
inputs = [s]  
outputs = []  
exceptions = []  
  
while inputs:  
    readable, writable, exceptional = select.select(inputs, outputs, exceptions)  
    for s in readable:  
        if s is s:  # 监听 Socket 可读,有新的连接请求  
            try:  
                conn, addr = s.accept()  
                print('连接已建立:', addr)  
                inputs.append(conn)  
            except Exception as e:  
                print('连接失败:', e)  
                exceptions.append(s)  # 将出现异常的监听 Socket 添加到异常列表中  
                s.close()  # 关闭监听 Socket  
                continue  # 继续监听下一轮连接请求  
        else:  # 已连接 Socket 可读,读取数据并处理  
            try:  
                data = s.recv(BUFSIZE)  
                if not data:  # 连接已断开,关闭 Socket 并从 inputs 中移除  
                    print('连接已断开:', s.getpeername())  
                    inputs.remove(s)  
                    s.close()  
                    continue  # 继续监听下一轮连接请求  
                # 处理数据...  
            except socket.error as e:  
                print('读取数据失败:', e)  
                exceptions.append(s)  # 将出现异常的已连接 Socket 添加到异常列表中  
                s.close()  # 关闭已连接 Socket  
                continue  # 继续监听下一轮连接请求
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/91410
推荐阅读
相关标签
  

闽ICP备14008679号