2

我一直在处理一个将数据包发送到自身的其他副本的程序,而 recvfrom 的行为方式我并不完全理解。程序的每个实例都设置在不同的端口上(知道其他实例的端口号已经存储在 dictMap 字典中)。这个想法是,在我启动了这个程序的多个实例(比如 8 个)之后,它们都应该每秒相互 ping 3 次(MINI_UPDATE_INTERVAL)。

但是,如果我在一大堆正在运行的情况下关闭其中一个实例,则程序都会继续打印“检测到丑陋的断开连接等”。多次,即使断开连接的实例只断开了一次。这背后的原因是什么?我的部分代码如下:

PORT = int(args.port)
socket.setdefaulttimeout(1)
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM,0)#make udp socket and use it to connect
s.bind(("",PORT))
s.setblocking(False)


#timing considerations
STARTTIME = time.time()
prevsent = STARTTIME


print "Node started..."
while True:

    readable, writable, err = select.select([s],[s],[s]) #using select to poll our socket to see if it is readable

    for sock in writable:#if s is writable (it should be), there are packets in the send queue AND one of the next two conditions is met:
        if forwardQueue:
            msgArr = forwardQueue.pop(0)
            sock.sendto(msgArr[MSG],("127.0.0.1",int(msgArr[DESTPORT])))


    for sock in readable: #if there's something to be read...
        try:
            recvMsg, addr = sock.recvfrom(2048)
        except:
            print "ugly disconnect detected" + str(addr[1]) + recvMsg
            break



    for sock in err:
        print "ERROR"



    if time.time() - MINI_UPDATE_INTERVAL > prevsent: #once a second
        # print time.time() - STARTTIME

        for key,value in dictMap.iteritems():
            forwardQueue.append([('PING'+ '|'+idName+'|'+str(time.time())),value])

编辑:问题似乎只发生在 Windows 上(其中 WSAECONNRESET 在断开连接后不断弹出)。由于我的代码最终是为 linux 设计的,我想这没什么大不了的。

4

1 回答 1

1

我相信每次您尝试将数据包发送到主机上的端口时,您都会收到错误消息,而该端口上没有任何内容正在侦听(或侦听积压已满)。

我建议从异常处理程序中的 dictMap 中删除该条目,以阻止抛出其他异常,因为您现在什么都不知道。

于 2016-10-20T13:43:37.177 回答