Dave Halliday

Results 7 comments of Dave Halliday

That's the expected behavior. The walk() method uses get_next() not get() to retrieve data. I think this behavior is consistent with other tools.

Thanks. I'll think about adding an option to the walk method. I can see how the inconsistency with the snmpwalk command would be confusing.

You could try something like this (not tested): ``` ruby module SNMP class OctetString def to_date dt = self.unpack("ncccccc") sprintf "%04d-%02d-%02dT%02d:%02d:%02d", *dt end end end ``` The SNMP library doesn't...

Thanks for the pull request. Many people have asked for this feature in the past. It's especially nice to see some tests for the code change. Most people don't bother...

Under what circumstances does a deadlock occur? How does this patch fix it?

Not supported at the moment, unfortunately. All of the metadata is included in the parse tree (which is borrowed from libsmi), I just haven't implemented the logic to extract it.

No plan at the moment. This might work for you: https://github.com/sleepinggenius2/gosmi. Haven't tried it myself, but it looks pretty good.