X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Fagent.h;h=e8d182515888cd0273ec8622eb8f47861ec8fc90;hb=e9492550eb58aff5f2a20ffd654fb46f8b9a87ea;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..e8d182515 100644 --- a/src/common/sessiond-comm/agent.h +++ b/src/common/sessiond-comm/agent.h @@ -18,7 +18,6 @@ #ifndef AGENT_COMM #define AGENT_COMM -#define _GNU_SOURCE #include #include @@ -37,8 +36,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, }; @@ -53,12 +55,14 @@ struct lttcomm_agent_hdr { } LTTNG_PACKED; /* - * Enable event command payload. + * Enable event command payload. Will be immediately followed by the + * variable-length string representing the filter expression. */ struct lttcomm_agent_enable { - uint32_t loglevel; + uint32_t loglevel_value; uint32_t loglevel_type; char name[LTTNG_SYMBOL_NAME_LEN]; + uint32_t filter_expression_length; } LTTNG_PACKED; /*