more work on IPC data protocol.

This commit is contained in:
Martin Preuss
2023-08-14 21:38:21 +02:00
parent 5fdb33c192
commit f9ae85b9ad
21 changed files with 505 additions and 32 deletions

View File

@@ -10,9 +10,10 @@
# include <config.h>
#endif
#include "./ping.h"
#include "./flash.h"
#include "./getdevices.h"
#include "./nodes/ping.h"
#include "./nodes/flash.h"
#include "./nodes/getdevices.h"
#include "./data/getvalues.h"
#include <aqhome/api.h>
#include <aqhome/aqhome.h>
@@ -69,6 +70,7 @@ int main(int argc, char **argv)
GWEN_FE_DAH("ping", AQH_Tool_Ping, I18N("Ping a given node on the network")),
GWEN_FE_DAH("flash", AQH_Tool_Flash, I18N("Flash a given node on the network")),
GWEN_FE_DAH("getdevices", AQH_Tool_GetDevices, I18N("Request list of known devices on the network")),
GWEN_FE_DAH("getvalues", AQH_Tool_GetValues, I18N("Request list of known values on the data server")),
GWEN_FE_END(),
};
const GWEN_FUNCS *func;