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

2016-01-06 Thread Russell Bryant
On 12/31/2015 06:55 AM, Ofer Ben Yacov wrote: > 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

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

2015-12-31 Thread 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 mode" in case the connec

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

2015-12-30 Thread Russell Bryant
On Mon, Dec 28, 2015 at 3:57 AM, Ofer Ben Yacov wrote: > Add unit test for passive mode. > > --- > python/ovs/db/idl.py | 18 +++--- > python/ovs/jsonrpc.py | 19 +++ > python/ovs/stream.py | 47 +++ > tests/ovsdb-idl.at

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

2015-12-28 Thread Ofer Ben Yacov
Add unit test for passive mode. --- python/ovs/db/idl.py | 18 +++--- python/ovs/jsonrpc.py | 19 +++ python/ovs/stream.py | 47 +++ tests/ovsdb-idl.at| 31 +++ tests/test-ovsdb.py | 49 +++