Re: [Ryu-devel] [PATCH] Use idle timeout in ofctl to avoid incomplete querying

2015-08-09 Thread FUJITA Tomonori
On Thu, 6 Aug 2015 00:05:03 +0800 Yi Tseng wrote: > From d6c85467975a56a064dfa7f6c14afe013c7390e2 Mon Sep 17 00:00:00 2001 > From: Takeshi > Date: Wed, 5 Aug 2015 23:45:00 +0800 > Subject: [PATCH] use idle timeout in ofctl to avoid incomplete querying > > --- > ryu/lib/ofctl_v1_0.py | 8 ++

Re: [Ryu-devel] [PATCH] Use idle timeout in ofctl to avoid incomplete querying

2015-08-06 Thread mark
Hi Sir, copy that. thanks for great help, again. Mark On 8/6/15 2:33 PM, Yi Tseng wrote: Hi Mark please see this diagram: 內置圖片 1 1. Reply packet must be received by ryu before timeout. 2. Ryu waits only one second for each reply. 3. I use OpenvSwitch -- Yi 2015-08-06 12:38 GMT+08:00 m

Re: [Ryu-devel] [PATCH] Use idle timeout in ofctl to avoid incomplete querying

2015-08-05 Thread Yi Tseng
Hi Mark please see this diagram: [image: 內置圖片 1] 1. Reply packet must be received by ryu before timeout. 2. Ryu waits only one second for each reply. 3. I use OpenvSwitch -- Yi 2015-08-06 12:38 GMT+08:00 mark : > Hi Sir, > > thanks for patch. > i modify ofctl_v1_3.py as you mentioned in pr

[Ryu-devel] [PATCH] Use idle timeout in ofctl to avoid incomplete querying

2015-08-05 Thread Yi Tseng
Hello According to this mail http://sourceforge.net/p/ryu/mailman/message/34347766/ ryu can't get all flow entries if query time is longer than DEFAULT_TIMEOUT(1s). In this patch, I add few line to check new messages. keep waiting if new message came (length of msgs changed) I tried to add 40