winstonhic

Results 1 issues of winstonhic

In /ryu/ofproto/ofproto_v1_3_parser.py about line=6073 If queue with len=0, while loop will not stop. ``` class OFPQueueGetConfigReply(MsgBase): .... offset = ofproto.OFP_QUEUE_GET_CONFIG_REPLY_SIZE while offset < msg_len: queue = OFPPacketQueue.parser(msg.buf, offset) msg.queues.append(queue) offset...