From 0414d9fca93dda9f97ec0cf06376baa9d5c72e10 Mon Sep 17 00:00:00 2001 From: zeisele <zeisele@iastate.edu> Date: Mon, 7 Mar 2022 19:28:39 +0100 Subject: [PATCH] changes needed for logfile command --- quad/src/commands/cb_default.h | 2 +- quad/src/commands/commands.c | 18 ++++++++++++++++-- quad/src/commands/commands.h | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/quad/src/commands/cb_default.h b/quad/src/commands/cb_default.h index c1b95ebed..5fd6f146f 100644 --- a/quad/src/commands/cb_default.h +++ b/quad/src/commands/cb_default.h @@ -5,5 +5,5 @@ /* cb_default used by portable commands.c */ int cb_default(struct modular_structs *structs, struct metadata *meta, unsigned char *data, unsigned short length) { - return 0; + return 0; } diff --git a/quad/src/commands/commands.c b/quad/src/commands/commands.c index 6b903e33a..06f59ba07 100644 --- a/quad/src/commands/commands.c +++ b/quad/src/commands/commands.c @@ -77,7 +77,9 @@ command_cb cb_respaddnode __attribute__((weak, alias("cb_default"))); command_cb cb_overrideoutput __attribute__((weak, alias("cb_default"))); command_cb cb_sendrtdata __attribute__((weak, alias("cb_default"))); - +command_cb cb_getlogfile __attribute__((weak, alias("cb_default"))); +command_cb cb_resplogfile __attribute__((weak, alias("cb_default"))); +command_cb cb_logblockcommand __attribute__((weak, alias("cb_default"))); /* * Command structure. @@ -90,7 +92,7 @@ command_cb cb_sendrtdata __attribute__((weak, alias("cb_default"))); * DO NOT change this struct without updating the * "MessageTypeID" struct in commands.h as well */ -struct MessageType MessageTypes[MAX_TYPE_ID] = +struct MessageType MessageTypes[MAX_TYPE_ID+3] = { // DEBUG { @@ -280,6 +282,18 @@ struct MessageType MessageTypes[MAX_TYPE_ID] = stringType, // Function pointer &cb_sendrtdata + }, + { "getlogfile", + stringType, + &cb_getlogfile + }, + { "respgetlogfile", + stringType, + &cb_resplogfile + }, + { "logblockcommand", + intType, + &cb_logblockcommand } }; diff --git a/quad/src/commands/commands.h b/quad/src/commands/commands.h index f3af95b73..4cabefc2b 100644 --- a/quad/src/commands/commands.h +++ b/quad/src/commands/commands.h @@ -80,7 +80,7 @@ struct MessageType{ }; /* Defined in commands.c */ -extern struct MessageType MessageTypes[MAX_TYPE_ID]; +extern struct MessageType MessageTypes[MAX_TYPE_ID+3]; int findCommand(char * cmdStr); #endif /* __COMMANDS_H */ -- GitLab