Re: [lisp-snmp] CL-Net-SNMP patch
Brought to you by:
binghe
From: Chun T. (binghe) <bin...@gm...> - 2008-08-11 06:09:18
|
Hi, Ingvar Thanks for the patch. I think just replace *load-pathname* to *load- truename* is OK. I'll merge this fix in next release. Currently I'm working on another big release of cl-net-snmp, a little API change, and some new features: * Portable SNMP server (can be used to receive SNMP trap/inform) * Better condition handling when doing ASN.1 and SNMP jobs. * SNMP access detect: snmp-set to a readonly OID can be denied without networking. * Many bugfixes from my users. * Optimize: parallel SNMP operations and BER encode. I'll glad to receive more bug-report and suggestion from you and your NOCtool project. Regards, Chun Tian (binghe) 在 2008-8-11,下午1:55, Ingvar 写道: > Hiya, I finally have some spare time and am now looking at making > NOCtool use > CL-Net-SNMP for assorted probing. However, as-is, the ASDF system > definition > file is not entirely happy with symlinks back and forth. > > So, here's a patch to make it so: > --- snmp.asd 2008-08-11 06:45:32.000000000 +0100 > +++ snmp.asd 2008-08-11 06:46:38.000000000 +0100 > @@ -29,7 +29,7 @@ > (s (let ((file (merge-pathnames > (make- > pathname :name "mib" > :type > "lisp-expr") > - *load-pathname*))) > + (truename *load- > pathname*)))) > (format t ";; Load MIB list > from ~A~%" file) > file) :direction :input) > (let ((mibs (read s))) > > |