On Fri, 15 May 2015 10:52:49 +0900
IWAMOTO Toshihiro wrote:
> Signed-off-by: IWAMOTO Toshihiro
> ---
> ryu/ofproto/ofproto_parser.py |2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/ryu/ofproto/ofproto_parser.py b/ryu/ofproto/ofproto_parser.py
> index 86b8439..8a1ceb
On Fri, 15 May 2015 11:03:30 +0900
YAMAMOTO Takashi wrote:
> This set is intended to be applied after IWAMOTO's "NX" prefix fix.
>
> YAMAMOTO Takashi (11):
> test_lib: Remove a questional exception re-raising
> Adapt to namespace-less oslo
> NXActionRegMove: Add type annotation for stringi
Hi all.
I am working on modification of OFAgent to manage logical switch
with OF-Config protocol:
https://github.com/budnyjj/ofagent/tree/tunnel_based
The purpose of this modification is to manage virtual switch in
standart and switch-realization-independent way.
Modified OFAgent together with p
Hi all,
I am trying to install a flow rule that outputs a packet to several ports.
I tried solving it by just adding several OFPActionOutput to the list of
actions:
for port in participant["ports"]:
out_port = port["ID"]
actions.append(parser.OFPActionOutput(out_port))
...
inst = [parser.