Source
89
89
/* agent return structure */
90
90
typedef struct
91
91
{
92
92
zbx_uint64_t lastlogsize; /* meta information */
93
93
zbx_uint64_t ui64;
94
94
double dbl;
95
95
char *str;
96
96
char *text;
97
97
char *msg; /* possible error message */
98
98
zbx_log_t *log;
99
-
int type; /* flags: see AR_* above */
99
+
int type; /* flags: see AR_* above */
100
100
int mtime; /* meta information */
101
101
}
102
102
AGENT_RESULT;
103
103
104
104
typedef struct
105
105
{
106
106
char *key;
107
107
unsigned flags;
108
108
int (*function)(AGENT_REQUEST *request, AGENT_RESULT *result);
109
109
char *test_param; /* item test parameters; user parameter items keep command here */