X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Fagent.h;h=4fbe3db7a34f25695388498fa687876e7187b74e;hb=8bbffd547a5d7ce11413aff2082f97aafe9d7a51;hp=55df5ed9f4561c69a62bcdbe693d94b538bbfe8b;hpb=56cc432ef23b7c940aafbfe59843e2e3134045d8;p=lttng-tools.git diff --git a/src/common/sessiond-comm/agent.h b/src/common/sessiond-comm/agent.h index 55df5ed9f..4fbe3db7a 100644 --- a/src/common/sessiond-comm/agent.h +++ b/src/common/sessiond-comm/agent.h @@ -37,8 +37,11 @@ enum lttcomm_agent_command { * Return codes from the agent. */ enum lttcomm_agent_ret_code { + /* Success, assumed to be the first entry */ AGENT_RET_CODE_SUCCESS = 1, + /* Invalid command */ AGENT_RET_CODE_INVALID = 2, + /* Unknown logger name */ AGENT_RET_CODE_UNKNOWN_NAME = 3, AGENT_RET_CODE_NR, }; @@ -56,7 +59,7 @@ struct lttcomm_agent_hdr { * Enable event command payload. */ struct lttcomm_agent_enable { - uint32_t loglevel; + uint32_t loglevel_value; uint32_t loglevel_type; char name[LTTNG_SYMBOL_NAME_LEN]; } LTTNG_PACKED;