├── .gitignore ├── CMakeLists.txt ├── cli.c ├── examples ├── CMakeLists.txt ├── client.c └── server.c ├── libubus-internal.h ├── libubus-io.c ├── libubus-obj.c ├── libubus-req.c ├── libubus-sub.c ├── libubus.c ├── libubus.h ├── lua ├── CMakeLists.txt ├── test.lua ├── test_client.lua └── ubus.c ├── python ├── .gitignore ├── MANIFEST.in ├── setup.py ├── tests │ ├── __init__.py │ ├── test_lib.py │ └── test_session.py ├── tox.ini └── ubus │ ├── __init__.py │ ├── libubus.processed.h │ └── session.py ├── systemd ├── CMakeLists.txt ├── ubus.service.in └── ubus.socket.in ├── ubus_common.h ├── ubusd.c ├── ubusd.h ├── ubusd_event.c ├── ubusd_id.c ├── ubusd_id.h ├── ubusd_obj.c ├── ubusd_obj.h ├── ubusd_proto.c └── ubusmsg.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/cli.c -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/examples/client.c -------------------------------------------------------------------------------- /examples/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/examples/server.c -------------------------------------------------------------------------------- /libubus-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/libubus-internal.h -------------------------------------------------------------------------------- /libubus-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/libubus-io.c -------------------------------------------------------------------------------- /libubus-obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/libubus-obj.c -------------------------------------------------------------------------------- /libubus-req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/libubus-req.c -------------------------------------------------------------------------------- /libubus-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/libubus-sub.c -------------------------------------------------------------------------------- /libubus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/libubus.c -------------------------------------------------------------------------------- /libubus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/libubus.h -------------------------------------------------------------------------------- /lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/lua/CMakeLists.txt -------------------------------------------------------------------------------- /lua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/lua/test.lua -------------------------------------------------------------------------------- /lua/test_client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/lua/test_client.lua -------------------------------------------------------------------------------- /lua/ubus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/lua/ubus.c -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/.gitignore -------------------------------------------------------------------------------- /python/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/MANIFEST.in -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/setup.py -------------------------------------------------------------------------------- /python/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/tests/__init__.py -------------------------------------------------------------------------------- /python/tests/test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/tests/test_lib.py -------------------------------------------------------------------------------- /python/tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/tests/test_session.py -------------------------------------------------------------------------------- /python/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/tox.ini -------------------------------------------------------------------------------- /python/ubus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/ubus/__init__.py -------------------------------------------------------------------------------- /python/ubus/libubus.processed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/ubus/libubus.processed.h -------------------------------------------------------------------------------- /python/ubus/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/python/ubus/session.py -------------------------------------------------------------------------------- /systemd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/systemd/CMakeLists.txt -------------------------------------------------------------------------------- /systemd/ubus.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/systemd/ubus.service.in -------------------------------------------------------------------------------- /systemd/ubus.socket.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/systemd/ubus.socket.in -------------------------------------------------------------------------------- /ubus_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubus_common.h -------------------------------------------------------------------------------- /ubusd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubusd.c -------------------------------------------------------------------------------- /ubusd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubusd.h -------------------------------------------------------------------------------- /ubusd_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubusd_event.c -------------------------------------------------------------------------------- /ubusd_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubusd_id.c -------------------------------------------------------------------------------- /ubusd_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubusd_id.h -------------------------------------------------------------------------------- /ubusd_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubusd_obj.c -------------------------------------------------------------------------------- /ubusd_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubusd_obj.h -------------------------------------------------------------------------------- /ubusd_proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubusd_proto.c -------------------------------------------------------------------------------- /ubusmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txomon/ubus/HEAD/ubusmsg.h --------------------------------------------------------------------------------