|
@@ -196,13 +196,15 @@ do_sync(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* ins
|
|
|
snmp_err_t
|
|
|
snmp_threadsync_get_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance)
|
|
|
{
|
|
|
- return do_sync(root_oid, root_oid_len, instance, get_instance_synced);
|
|
|
+ //return do_sync(root_oid, root_oid_len, instance, get_instance_synced);
|
|
|
+ return SNMP_ERR_NOACCESS;
|
|
|
}
|
|
|
|
|
|
snmp_err_t
|
|
|
snmp_threadsync_get_next_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance)
|
|
|
{
|
|
|
- return do_sync(root_oid, root_oid_len, instance, get_next_instance_synced);
|
|
|
+ //return do_sync(root_oid, root_oid_len, instance, get_next_instance_synced);
|
|
|
+ return SNMP_ERR_NOACCESS;
|
|
|
}
|
|
|
|
|
|
/** Initializes thread synchronization instance */
|