Source
171
171
172
172
#define ZBX_IF_SNMP_VERSION_1 1
173
173
#define ZBX_IF_SNMP_VERSION_2 2
174
174
#define ZBX_IF_SNMP_VERSION_3 3
175
175
176
176
#define ZBX_FLAG_DISCOVERY_NORMAL 0x00
177
177
#define ZBX_FLAG_DISCOVERY_RULE 0x01
178
178
#define ZBX_FLAG_DISCOVERY_PROTOTYPE 0x02
179
179
#define ZBX_FLAG_DISCOVERY_CREATED 0x04
180
180
181
-
#define ZBX_GROUP_TYPE_HOST 0
182
-
183
181
#define ZBX_HOST_PROT_INTERFACES_INHERIT 0
184
182
#define ZBX_HOST_PROT_INTERFACES_CUSTOM 1
185
183
186
184
typedef enum
187
185
{
188
186
ITEM_AUTHTYPE_PASSWORD = 0,
189
187
ITEM_AUTHTYPE_PUBLICKEY
190
188
}
191
189
zbx_item_authtype_t;
192
190