this set includes msgpack-rpc library and command line client. changes from the previous: - incorporated feedbacks - rebase
FUJITA Tomonori (1): msgpack rpc helper YAMAMOTO Takashi (11): msgpack-rpc fixes and improvements remove msgpack-python from pip-requires for now import msgpack into ryu/contrib add a method to import a system (non ryu/contrib) module rpc: use system msgpack library if available msgpack-rpc: unit tests rpc: add a test for https://github.com/yamt/ryu/pull/1 rpc: prefix closed_by_peer with _ as it's private rpc: test case add rpc.Client.peek_notification a simple command line msgpack-rpc client yuta-hamada (1): rpc: If the socket is closed by peer, endpoint stop the serve. bin/rpc-cli | 237 ++++++++++++++++ run_tests.sh | 2 +- ryu/contrib/__init__.py | 31 +++ ryu/contrib/msgpack/__init__.py | 21 ++ ryu/contrib/msgpack/_version.py | 1 + ryu/contrib/msgpack/exceptions.py | 29 ++ ryu/contrib/msgpack/fallback.py | 558 ++++++++++++++++++++++++++++++++++++++ ryu/lib/rpc.py | 326 ++++++++++++++++++++++ ryu/tests/unit/lib/test_rpc.py | 369 +++++++++++++++++++++++++ setup.cfg | 2 +- setup.py | 3 +- 11 files changed, 1576 insertions(+), 3 deletions(-) create mode 100755 bin/rpc-cli create mode 100644 ryu/contrib/msgpack/__init__.py create mode 100644 ryu/contrib/msgpack/_version.py create mode 100644 ryu/contrib/msgpack/exceptions.py create mode 100644 ryu/contrib/msgpack/fallback.py create mode 100644 ryu/lib/rpc.py create mode 100644 ryu/tests/unit/lib/test_rpc.py -- 1.8.1.5 ------------------------------------------------------------------------------ This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
