
Hi!
Arie> I would like my application to skip a MIB module that caused a Arie> failure and continue loading other MIBs. How can I handle this Arie> situation in my application (do some cleanup for a falty MIB and Arie> prepare for loading the next one)?
There are good reasons for the parser to terminate in case of severe errors. If it would continue, you would end up with dangling pointers and consequences you would not like! ;-)
You must use correct SMI code. In case of a programming language like C you would also not expect your compiler to accept illegal code.
So: First fix the first module before running your application with the next one.
-frank -- !! This message is brought to you via the `libsmi' mailing list. !! Please do not reply to this message to unsubscribe. To subscribe or !! unsubscribe, send a mail message to libsmi-request@ibr.cs.tu-bs.de. !! See http://www.ibr.cs.tu-bs.de/projects/libsmi/ for more information.