snmpa_mib_storage
Module
Module Summary
Since
Description
This module defines the behaviour of the SNMP agent mib storage.
The mib storage is used by the agent to store internal mib- related information. The mib storage module is used by several entities, not just the mib-server.
A snmpa_mib_storage compliant module must export the following functions:
- open/5
- close/1
- read/2
- write/2
- delete/1
- delete/2
- match_object/2
- match_delete/2
- tab2list/1
- info/1
- sync/1
- backup/2
The semantics of them and their exact signatures are explained below.
CALLBACK FUNCTIONS
Exports
OTP R16B01 |
Types
Create or open a mib storage table.
Note that the RecordName and Fields arguments my not be used in all implementations (they are actually only needed for mnesia-based implementations).
Note also that the Options argument comes from the options config option of the mib-storage config option, and is passed on as is.
OTP R16B01 |
Types
OTP R16B01 |
Types
OTP R16B01 |
Types
OTP R16B01 |
Types
OTP R16B01 |
Types
OTP R16B01 |
Types
OTP R16B01 |
Types
Search the mib-storage table for record that match the specified pattern and then delete them. The records deleted are also returned.
OTP R16B01 |
Types
OTP R16B01 |
Types
OTP R16B01 |
Types
OTP R16B01 |
Types
Perform a backup of the mib-storage table.
What this means, if anything, is implementation dependent.