require("msys.core");
local mod = {};
function mod:mms_log_status(msg)
local status = msys.core.ec_message_context_get(msg, msys.core.ECMESS_CTX_MESS, »
"MM7_Response_Status");
print("sample_mm7_log_status_hook log message status: ", status);
end
msys.registerModule("mm7_hooks_test", mod);
#include "module.h"
#include "modules/mobility/mms/hooks/mms_logging.h"
#include "modules/mobility/mms/mm7.h"
static void sample_mm7_log_status_hook(void *closure, ec_message *m)
{
const char* status = ec_message_context_get(m, ECMESS_CTX_MESS, VCTX_KEY_MM7_RESPONSE_STATUS);
printf("sample_mm7_log_status_hook log message status: %s\n", status);
}
static int init (generic_module_infrastructure *gself) {
/* register the hook during module initialization */
register_mms_log_status_hook_first (sample_mm7_log_status_hook, gself);
return 0;
}
EC_MODULE_EXPORT
generic_module_infrastructure mm7_hook_test = {
{
EC_MODULE_INIT(EC_MODULE_TYPE_GENERIC, 0),
"mm7_hook_test.c",
"Sample MM7 Hook",
NULL,
NULL,
NULL,
init,
NULL,
NULL,
NULL,
NULL,
NULL
}
};
Was this page helpful?