Re: [ovs-dev] [PATCH] Add Passive TCP connection to IDL

2015-12-20 Thread Russell Bryant
On 12/20/2015 08:12 AM, Ofer Ben-Yacov wrote: > Hi Russel, > > to answer your questions: > 1. limitation: the use case for passive mode is that I'm integrating IDL > to L2GW project and passive mode is prerequisite. The change that will > enable usage of the same IP and PORT (full blown server) wi

Re: [ovs-dev] [PATCH] Add Passive TCP connection to IDL

2015-12-20 Thread Ofer Ben-Yacov
Hi Russel, to answer your questions: 1. limitation: the use case for passive mode is that I'm integrating IDL to L2GW project and passive mode is prerequisite. The change that will enable usage of the same IP and PORT (full blown server) will require much more code changes, probably to Neutron als

Re: [ovs-dev] [PATCH] Add Passive TCP connection to IDL

2015-12-17 Thread Russell Bryant
On 12/17/2015 04:37 AM, Ofer Ben Yacov wrote: > From: Ofer Ben-Yacov > > Currently the IDL does not support passive TCP connection, > i.e. when the OVSDB connects to its manager. > > This patch enables IDL to use an already-open session > (the one which was previously used for retrieving the db

[ovs-dev] [PATCH] Add Passive TCP connection to IDL

2015-12-17 Thread Ofer Ben Yacov
From: Ofer Ben-Yacov Currently the IDL does not support passive TCP connection, i.e. when the OVSDB connects to its manager. This patch enables IDL to use an already-open session (the one which was previously used for retrieving the db schema). In addition, it enables IDL to go back to "listen m

[ovs-dev] [PATCH] Add Passive TCP connection to IDL

2015-12-02 Thread ofer . benyacov
Currently the IDL does not support passive TCP connection, i.e. when the OVSDB connects to its manager. This patch enables IDL to use an already-open session (the one which was previously used for retrieving the db schema). In addition, it enables IDL to go back to "listen mode" in case the conne

[ovs-dev] [PATCH] Add Passive TCP connection to IDL

2015-12-02 Thread ofer . benyacov
From: Ofer Ben Yacov --- python/ovs/db/idl.py | 18 +++--- python/ovs/jsonrpc.py | 19 +++ python/ovs/stream.py | 13 ++--- 3 files changed, 32 insertions(+), 18 deletions(-) diff --git a/python/ovs/db/idl.py b/python/ovs/db/idl.py index c8990c7..4b492fe 10