Not sure if I posted in the correct category, let me know if I should post somewhere else.
I have a previous implementation to msg the user of a cli session by sending to their specific user id associated with the callback that I received.
Something like the below using the maapi_user_message.
char usid[12];
snprintf(usid, sizeof(usid), "%d", tctx_p->uinfo->usid);
int ret = maapi_user_message(ConfdValidationClient::Instance().getMaapiSocket_v(), usid, responseStr.c_str(), "INFO");
I was wondering if there was a way to send back a message in the rpc response to a netconf-console request. I see that, for example, when a validation callback raises an error, we will send back whatever the set error was in the rpc response. Is there a way to send back a message in the case that there was no error?