Re: [lisp-snmp] Patch to asn.1 to change from parsergen to a modified cl-yacc
Brought to you by:
binghe
From: John F. <jf...@ms...> - 2009-02-09 07:27:40
|
"Chun Tian (binghe)" <bin...@gm...> writes: [...] >> Will this work with the old function? I don't think so, because of >> the . > > No, the #\. is NOT the key, and (oid "ASN.1/SNMPv2-SMI::mib-2.SNMPv2- > MIB::system") do work with the old (current) OID function, you can try > it yourself. CL readtable is a very good builtin lexer. Sorry for the confusion. [...] > Again, #\. is not the key, it is how to add "ASN.1/" to every "package > name" in OID string. Maybe using the reader here is asking for a bit too much ;-) What are the OID sequences you want to parse? package::name name .name0.name1.name2 .1.2.4.5.6 This is quite easy to do without the Lisp reader . . . [...] |