├── .gitignore ├── CMakeLists.txt ├── COPYING ├── LICENSE ├── README.rst ├── common ├── json.c ├── module.c ├── output.c ├── scheduler.c └── utils.c ├── include └── nodewatcher-agent │ ├── json.h │ ├── module.h │ ├── output.h │ ├── scheduler.h │ └── utils.h ├── main.c └── modules ├── clients.c ├── general.c ├── http_push.c ├── interfaces.c ├── keys_ssh.c ├── meshpoint.c ├── packages.c ├── resources.c ├── routing_babel.c ├── routing_olsr.c └── wireless.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/README.rst -------------------------------------------------------------------------------- /common/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/common/json.c -------------------------------------------------------------------------------- /common/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/common/module.c -------------------------------------------------------------------------------- /common/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/common/output.c -------------------------------------------------------------------------------- /common/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/common/scheduler.c -------------------------------------------------------------------------------- /common/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/common/utils.c -------------------------------------------------------------------------------- /include/nodewatcher-agent/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/include/nodewatcher-agent/json.h -------------------------------------------------------------------------------- /include/nodewatcher-agent/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/include/nodewatcher-agent/module.h -------------------------------------------------------------------------------- /include/nodewatcher-agent/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/include/nodewatcher-agent/output.h -------------------------------------------------------------------------------- /include/nodewatcher-agent/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/include/nodewatcher-agent/scheduler.h -------------------------------------------------------------------------------- /include/nodewatcher-agent/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/include/nodewatcher-agent/utils.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/main.c -------------------------------------------------------------------------------- /modules/clients.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/clients.c -------------------------------------------------------------------------------- /modules/general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/general.c -------------------------------------------------------------------------------- /modules/http_push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/http_push.c -------------------------------------------------------------------------------- /modules/interfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/interfaces.c -------------------------------------------------------------------------------- /modules/keys_ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/keys_ssh.c -------------------------------------------------------------------------------- /modules/meshpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/meshpoint.c -------------------------------------------------------------------------------- /modules/packages.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/resources.c -------------------------------------------------------------------------------- /modules/routing_babel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/routing_babel.c -------------------------------------------------------------------------------- /modules/routing_olsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/routing_olsr.c -------------------------------------------------------------------------------- /modules/wireless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlanslovenija/nodewatcher-agent/HEAD/modules/wireless.c --------------------------------------------------------------------------------