实例介绍
asn.1语言解析源代码,可解析为c语言或c++语言
【实例截图】
【核心代码】
4744302543023233367.gz
└── snacc-1.3
├── acconfig.h
├── asn1specs
│ ├── any.asn1
│ ├── asn1module.asn1
│ ├── asn-useful.asn1
│ ├── err-test.asn1
│ ├── ex1.asn1
│ ├── makefile
│ ├── p-rec.asn1
│ ├── rfc1155-smi.asn1
│ ├── rfc1157-snmp.asn1
│ ├── rfc1213-mib2.asn1
│ └── tbl.asn1
├── c++-examples
│ ├── any
│ │ ├── example.C
│ │ ├── genber.C
│ │ ├── makefile
│ │ └── README
│ ├── makefile
│ ├── simple
│ │ ├── example.C
│ │ ├── genber.C
│ │ ├── good-pr.ber
│ │ ├── makefile
│ │ └── README
│ ├── snmp
│ │ ├── makefile
│ │ └── README
│ └── test-lib
│ ├── makefile
│ ├── README
│ └── test-lib.C
├── c-examples
│ ├── any
│ │ ├── example.c
│ │ ├── genber.c
│ │ ├── makefile
│ │ └── README
│ ├── makefile
│ ├── simple
│ │ ├── expbuf-ex.c
│ │ ├── genber.c
│ │ ├── good-pr.ber
│ │ ├── makefile
│ │ ├── minbuf-ex.c
│ │ ├── README
│ │ └── sbuf-ex.c
│ ├── snmp
│ │ ├── makefile
│ │ └── README
│ └── test-lib
│ ├── makefile
│ ├── README
│ └── test-lib.c
├── ChangeLog
├── c++-lib
│ ├── inc
│ │ ├── asn-any.h
│ │ ├── asn-bits.h
│ │ ├── asn-bool.h
│ │ ├── asn-buf.h
│ │ ├── asn-config.h
│ │ ├── asn-enum.h
│ │ ├── asn-incl.h
│ │ ├── asn-int.h
│ │ ├── asn-len.h
│ │ ├── asn-list.h
│ │ ├── asn-null.h
│ │ ├── asn-octs.h
│ │ ├── asn-oid.h
│ │ ├── asn-real.h
│ │ ├── asn-tag.h
│ │ ├── asn-type.h
│ │ ├── hash.h
│ │ ├── init.h
│ │ ├── meta.h
│ │ ├── print.h
│ │ ├── str-stk.h
│ │ └── tcl-if.h
│ ├── makefile
│ ├── README
│ └── src
│ ├── asn-any.C
│ ├── asn-bits.C
│ ├── asn-bool.C
│ ├── asn-enum.C
│ ├── asn-int.C
│ ├── asn-len.C
│ ├── asn-list.C
│ ├── asn-null.C
│ ├── asn-octs.C
│ ├── asn-oid.C
│ ├── asn-real.C
│ ├── asn-tag.C
│ ├── asn-type.C
│ ├── hash.C
│ ├── meta.C
│ ├── print.C
│ ├── str-stk.C
│ ├── tcl-if.C
│ └── tkAppInit.c
├── c-lib
│ ├── boot
│ │ ├── asn-useful.c
│ │ ├── asn-useful.h
│ │ ├── tbl.c
│ │ └── tbl.h
│ ├── inc
│ │ ├── asn-any.h
│ │ ├── asn-bits.h
│ │ ├── asn-bool.h
│ │ ├── asn-config.h
│ │ ├── asn-enum.h
│ │ ├── asn-incl.h
│ │ ├── asn-int.h
│ │ ├── asn-len.h
│ │ ├── asn-list.h
│ │ ├── asn-null.h
│ │ ├── asn-octs.h
│ │ ├── asn-oid.h
│ │ ├── asn-real.h
│ │ ├── asn-tag.h
│ │ ├── exp-buf.h
│ │ ├── gen-buf.h
│ │ ├── hash.h
│ │ ├── min-buf.h
│ │ ├── nibble-alloc.h
│ │ ├── print.h
│ │ ├── sbuf.h
│ │ ├── str-stk.h
│ │ ├── tbl-dbg.h
│ │ ├── tbl-dec.h
│ │ ├── tbl-enc.h
│ │ ├── tbl-free.h
│ │ ├── tbl-gen-c-hdr.h
│ │ ├── tbl-gen.h
│ │ ├── tbl-incl.h
│ │ ├── tbl-print.h
│ │ └── tbl-util.h
│ ├── makefile
│ ├── README
│ ├── src
│ │ ├── asn-any.c
│ │ ├── asn-bits.c
│ │ ├── asn-bool.c
│ │ ├── asn-enum.c
│ │ ├── asn-int.c
│ │ ├── asn-len.c
│ │ ├── asn-list.c
│ │ ├── asn-null.c
│ │ ├── asn-octs.c
│ │ ├── asn-oid.c
│ │ ├── asn-real.c
│ │ ├── asn-tag.c
│ │ ├── exp-buf.c
│ │ ├── hash.c
│ │ ├── nibble-alloc.c
│ │ ├── print.c
│ │ ├── sbuf.c
│ │ ├── str-stk.c
│ │ ├── tbl-dbg.c
│ │ ├── tbl-dec.c
│ │ ├── tbl-enc.c
│ │ ├── tbl-free.c
│ │ ├── tbl-gen.c
│ │ ├── tbl-print.c
│ │ └── tbl-util.c
│ └── tbl.h.patch
├── compiler
│ ├── back-ends
│ │ ├── c++-gen
│ │ │ ├── gen-any.c
│ │ │ ├── gen-any.h
│ │ │ ├── gen-code.c
│ │ │ ├── gen-code.h
│ │ │ ├── gen-vals.c
│ │ │ ├── gen-vals.h
│ │ │ ├── kwd.c
│ │ │ ├── kwd.h
│ │ │ ├── rules.c
│ │ │ ├── rules.h
│ │ │ ├── types.c
│ │ │ └── types.h
│ │ ├── c-gen
│ │ │ ├── gen-any.c
│ │ │ ├── gen-any.h
│ │ │ ├── gen-code.c
│ │ │ ├── gen-code.h
│ │ │ ├── gen-dec.c
│ │ │ ├── gen-dec.h
│ │ │ ├── gen-enc.c
│ │ │ ├── gen-enc.h
│ │ │ ├── gen-free.c
│ │ │ ├── gen-free.h
│ │ │ ├── gen-print.c
│ │ │ ├── gen-print.h
│ │ │ ├── gen-type.c
│ │ │ ├── gen-type.h
│ │ │ ├── gen-vals.c
│ │ │ ├── gen-vals.h
│ │ │ ├── kwd.c
│ │ │ ├── kwd.h
│ │ │ ├── rules.c
│ │ │ ├── rules.h
│ │ │ ├── type-info.c
│ │ │ ├── type-info.h
│ │ │ ├── util.c
│ │ │ └── util.h
│ │ ├── cond.c
│ │ ├── cond.h
│ │ ├── idl-gen
│ │ │ ├── gen-any.c
│ │ │ ├── gen-any.h
│ │ │ ├── gen-code.c
│ │ │ ├── gen-code.h
│ │ │ ├── gen-vals.c
│ │ │ ├── gen-vals.h
│ │ │ ├── rules.c
│ │ │ ├── rules.h
│ │ │ ├── types.c
│ │ │ └── types.h
│ │ ├── str-util.c
│ │ ├── str-util.h
│ │ ├── tag-util.c
│ │ └── tag-util.h
│ ├── boot
│ │ ├── tbl.c
│ │ └── tbl.h
│ ├── core
│ │ ├── asn1module.h
│ │ ├── define.c
│ │ ├── define.h
│ │ ├── dependency.c
│ │ ├── dependency.h
│ │ ├── do-macros.c
│ │ ├── do-macros.h
│ │ ├── err-chk.c
│ │ ├── err-chk.h
│ │ ├── exports.c
│ │ ├── exports.h
│ │ ├── gen-tbls.c
│ │ ├── gen-tbls.h
│ │ ├── lex-asn1.l
│ │ ├── lex-stuff.h
│ │ ├── lib-types.c
│ │ ├── lib-types.h
│ │ ├── link-types.c
│ │ ├── link-types.h
│ │ ├── link-values.c
│ │ ├── link-values.h
│ │ ├── mem.c
│ │ ├── mem.h
│ │ ├── meta.c
│ │ ├── meta.h
│ │ ├── normalize.c
│ │ ├── normalize.h
│ │ ├── oid.c
│ │ ├── oid.h
│ │ ├── parse-asn1.y
│ │ ├── parser.h
│ │ ├── print.c
│ │ ├── print.h
│ │ ├── recursive.c
│ │ ├── recursive.h
│ │ ├── snacc.c
│ │ ├── snacc-util.c
│ │ ├── snacc-util.h
│ │ ├── tbl.h
│ │ ├── val-parser.c
│ │ └── val-parser.h
│ ├── makefile
│ └── README
├── config.h.in
├── configure
├── configure.in
├── COPYING
├── doc
│ ├── asn1-defs.tex
│ ├── c++-gen.tex
│ ├── c-gen.tex
│ ├── c++-lib.tex
│ ├── c-lib.tex
│ ├── coding.tex
│ ├── corba.bib
│ ├── design.tex
│ ├── editor.tex
│ ├── future-work.tex
│ ├── idl-gen.tex
│ ├── intro-1.1.tex
│ ├── intro-1.2.tex
│ ├── makefile
│ ├── makefile.tex
│ ├── meta.tex
│ ├── misc-hyph.tex
│ ├── mkchdr.1
│ ├── modifying.tex
│ ├── ptbl.1
│ ├── pval.1
│ ├── snacc.1
│ ├── snacc-a5.ps
│ ├── snacc.bib
│ ├── snacced.1
│ ├── snacc.n
│ ├── snacc.tex
│ ├── tcl.bib
│ ├── tcl.tex
│ ├── ttab.tex
│ ├── tumble.sed
│ └── version.tex
├── INSTALL
├── install-sh
├── makefile
├── makehead.in
├── maketail
├── mkinstalldirs
├── NEWS
├── policy.h
├── README
├── snacc.h
├── stamp-h.in
├── tbl-example
│ ├── example.c
│ ├── makefile
│ ├── p-rec.ber
│ └── README
├── tbl-tools
│ ├── berdecode
│ │ ├── berdecode.c
│ │ ├── makefile
│ │ └── README
│ ├── makefile
│ ├── mkchdr
│ │ ├── makefile
│ │ ├── mkchdr.c
│ │ ├── README
│ │ └── tbl-gen-c-hdr.c
│ ├── ptbl
│ │ ├── makefile
│ │ ├── pasn1.c
│ │ ├── pasn1.h
│ │ ├── ptbl.c
│ │ └── README
│ └── pval
│ ├── makefile
│ ├── pval.c
│ └── README
├── tcl-asn
│ ├── asnwish.c
│ ├── beredit
│ ├── makefile
│ ├── README
│ └── tclasn.c
├── tcl-example
│ ├── edex0.asn1
│ ├── edex1.asn1
│ └── makefile
├── tcl-lib
│ ├── bindings.tcl
│ ├── help.tcl
│ ├── makefile
│ ├── make-snacced
│ ├── selbox.tcl
│ ├── snacced.tcl
│ ├── tkuti.tcl
│ └── uti.tcl
├── tcl-p.c
└── version.h
36 directories, 333 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论