net-snmp 3.11.1 → 3.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
@@ -3367,6 +3367,10 @@ Example programs are included under the module's `example` directory.
|
|
3367
3367
|
|
3368
3368
|
* Add error status and index handling to AgentX subagent
|
3369
3369
|
|
3370
|
+
## Version 3.11.2 - 03/04/2024
|
3371
|
+
|
3372
|
+
* Add provider to MIB request
|
3373
|
+
|
3370
3374
|
# License
|
3371
3375
|
|
3372
3376
|
Copyright (c) 2020 Mark Abrahams <mark@abrahams.co.nz>
|
package/index.js
CHANGED
@@ -4537,6 +4537,7 @@ var MibRequest = function (requestDefinition) {
|
|
4537
4537
|
this.address = Mib.convertOidToAddress (requestDefinition.oid);
|
4538
4538
|
this.oid = this.address.join ('.');
|
4539
4539
|
this.providerNode = requestDefinition.providerNode;
|
4540
|
+
this.provider = this.providerNode ? this.providerNode.provider : null;
|
4540
4541
|
this.instanceNode = requestDefinition.instanceNode;
|
4541
4542
|
};
|
4542
4543
|
|