实例介绍
功能说明:在目标板上建立一个TCP服务器(本程序固定IP:192.168.1.200 端口:2020)系统初始化完成后打开电脑自带的命令行工具(cmd),键入:telnet 192.168.1.200 2020 (enter)如果目标板系统配置正常的话会提示Connect to tcp server(如果不正常就提示不能连接、打开端口),打开串口助手,设置波特率为57600,8位数据位,1位停止位,校验位none,选择字符串模式,此时在命令行中输入字符(英文字母、数字等,汉字是不行的,呵呵)在串口工具的视窗栏中会打印相同的字符,见剪切板图示。 ************************************************************************************************ 代码缺陷: ①:单片机定时器0功能未做好,uip的定时超时功能应该是存在缺陷的,有兴趣可以完善 ②:采用轮询的方式,在实时性上较差 ③:作者未作长时间测试,稳定性不能保证 ************************************************************************************************ 以上对打包文件进行说明,关于文件的结构就不说了(用keil4打开PRJ中的工程文件,个人感觉文件布局是很清晰的),如果参考修改的话,可以修改MCU(单片机相关)NET-CP2200(网卡驱动及uip与网卡的接口)UIP-APPS(UIP网络应用功能添加)USER-MAIN(主循环函数),CP2200的手册也传到资源上了,中文版供参阅。
【实例截图】
【核心代码】
4744302542920593242.rar
└── UIP-NET-F340
├── LISTING
│ ├── clock-arch.lst
│ ├── CP2200dev.lst
│ ├── CP2200.lst
│ ├── CP2200-new.lst
│ ├── CP2200-reg.lst
│ ├── MCU51Net.m51
│ ├── MCU51-STC.lst
│ ├── MCU-C8051F340.lst
│ ├── RTL8019AS.lst
│ ├── RTL8019dev.lst
│ ├── STARTUP.lst
│ ├── TCP-APP.lst
│ ├── TCP-SERVER-APP.lst
│ ├── timer.lst
│ ├── uip_arch.lst
│ ├── uip_arp.lst
│ ├── uip.lst
│ └── USER-MAIN.lst
├── MCU
│ ├── MCU-C8051F340.c
│ └── MCU-C8051F340.h
├── myType.h
├── NET-CP2200
│ ├── CP2200.c
│ ├── CP2200dev.c
│ ├── CP2200dev.h
│ ├── CP2200.h
│ ├── CP2200-new.c
│ ├── CP2200-reg.c
│ └── CP2200-reg.h
├── OUT
│ ├── clock-arch.__i
│ ├── clock-arch.obj
│ ├── CP2200dev.__i
│ ├── CP2200dev.obj
│ ├── CP2200.__i
│ ├── CP2200-new.__i
│ ├── CP2200.obj
│ ├── CP2200-reg.__i
│ ├── CP2200-reg.obj
│ ├── MCU51Net
│ ├── MCU51Net.hex
│ ├── MCU51Net.lnp
│ ├── MCU51Net.plg
│ ├── MCU51-STC.__i
│ ├── MCU51-STC.obj
│ ├── MCU-C8051F340.__i
│ ├── MCU-C8051F340.obj
│ ├── RTL8019AS.__i
│ ├── RTL8019AS.obj
│ ├── RTL8019dev.__i
│ ├── RTL8019dev.obj
│ ├── STARTUP._ia
│ ├── STARTUP.obj
│ ├── TCP-APP.__i
│ ├── TCP-APP.obj
│ ├── TCP-SERVER-APP.__i
│ ├── TCP-SERVER-APP.obj
│ ├── timer.__i
│ ├── timer.obj
│ ├── uip_arch.__i
│ ├── uip_arch.obj
│ ├── uip_arp.__i
│ ├── uip_arp.obj
│ ├── uip.__i
│ ├── uip.obj
│ ├── USER-MAIN.__i
│ └── USER-MAIN.obj
├── PRJ
│ ├── MCU51Net.plg
│ ├── MCU51Net.uvgui.Administrator
│ ├── MCU51Net.uvgui_Administrator.bak
│ ├── MCU51Net.uvopt
│ ├── MCU51Net_uvopt.bak
│ ├── MCU51Net.uvproj
│ ├── MCU51Net_uvproj.bak
│ ├── STARTUP.A51
│ └── Target 1.BAT
├── ReadMe.txt
├── UIP-APPS
│ └── TCP-SERVER
│ ├── TCP-APP.c
│ ├── TCP-APP.h
│ └── TCP-SERVER-APP.c
├── UIP-CORE
│ ├── SYSTEM
│ │ ├── clock-arch.c
│ │ ├── clock-arch.h
│ │ └── uip-conf.h
│ ├── UIP
│ │ ├── clock.h
│ │ ├── timer.c
│ │ ├── timer.h
│ │ ├── uip_arch.h
│ │ ├── uip_arp.c
│ │ ├── uip_arp.h
│ │ ├── uip.c
│ │ ├── uip.h
│ │ └── uipopt.h
│ ├── uip-0.9-源码
│ │ ├── apps
│ │ │ ├── httpd
│ │ │ │ ├── cgi.c
│ │ │ │ ├── cgi.h
│ │ │ │ ├── fs
│ │ │ │ │ ├── 404.html
│ │ │ │ │ ├── about.html
│ │ │ │ │ ├── cgi
│ │ │ │ │ │ ├── files
│ │ │ │ │ │ ├── stats
│ │ │ │ │ │ └── tcp
│ │ │ │ │ ├── control.html
│ │ │ │ │ ├── files_footer.plain
│ │ │ │ │ ├── files_header.html
│ │ │ │ │ ├── img
│ │ │ │ │ │ └── bg.png
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── stats_footer.plain
│ │ │ │ │ ├── stats_header.html
│ │ │ │ │ ├── tcp_footer.plain
│ │ │ │ │ └── tcp_header.html
│ │ │ │ ├── fs.c
│ │ │ │ ├── fsdata.c
│ │ │ │ ├── fsdata.h
│ │ │ │ ├── fs.h
│ │ │ │ ├── httpd.c
│ │ │ │ ├── httpd.h
│ │ │ │ └── makefsdata
│ │ │ ├── resolv
│ │ │ │ ├── resolv.c
│ │ │ │ └── resolv.h
│ │ │ ├── smtp
│ │ │ │ ├── makesmtpstrings
│ │ │ │ ├── smtp.c
│ │ │ │ ├── smtp.h
│ │ │ │ ├── smtp-strings
│ │ │ │ ├── smtp-strings.c
│ │ │ │ └── smtp-strings.h
│ │ │ ├── telnet
│ │ │ │ ├── telnet.c
│ │ │ │ └── telnet.h
│ │ │ ├── telnetd
│ │ │ │ ├── memb.c
│ │ │ │ ├── memb.h
│ │ │ │ ├── telnetd.c
│ │ │ │ ├── telnetd.h
│ │ │ │ └── telnetd-shell.c
│ │ │ └── webclient
│ │ │ ├── http-strings
│ │ │ ├── http-strings.c
│ │ │ ├── http-strings.h
│ │ │ ├── makehttpstrings
│ │ │ ├── webclient.c
│ │ │ └── webclient.h
│ │ ├── doc
│ │ │ ├── ATMELwebserver.pdf
│ │ │ ├── Doxyfile
│ │ │ ├── eZ2981Abstract.pdf
│ │ │ ├── html
│ │ │ │ ├── a00030.html
│ │ │ │ ├── a00036.html
│ │ │ │ ├── a00037.html
│ │ │ │ ├── a00038.html
│ │ │ │ ├── a00039.html
│ │ │ │ ├── a00041.html
│ │ │ │ ├── a00046.html
│ │ │ │ ├── a00049.html
│ │ │ │ ├── a00050.html
│ │ │ │ ├── a00051.html
│ │ │ │ ├── a00052.html
│ │ │ │ ├── a00053.html
│ │ │ │ ├── a00054.html
│ │ │ │ ├── a00055.html
│ │ │ │ ├── a00056.html
│ │ │ │ ├── a00057.html
│ │ │ │ ├── a00058.html
│ │ │ │ ├── a00059.html
│ │ │ │ ├── a00060.html
│ │ │ │ ├── a00061.html
│ │ │ │ ├── a00062.html
│ │ │ │ ├── a00063.html
│ │ │ │ ├── a00064.html
│ │ │ │ ├── a00065.html
│ │ │ │ ├── a00067.html
│ │ │ │ ├── a00068.html
│ │ │ │ ├── a00069.html
│ │ │ │ ├── a00070.html
│ │ │ │ ├── a00071.html
│ │ │ │ ├── a00072.html
│ │ │ │ ├── a00073.html
│ │ │ │ ├── a00074.html
│ │ │ │ ├── a00075.html
│ │ │ │ ├── a00076.html
│ │ │ │ ├── a00077.html
│ │ │ │ ├── a00078.html
│ │ │ │ ├── a00079.html
│ │ │ │ ├── a00080.html
│ │ │ │ ├── a00081.html
│ │ │ │ ├── a00082.html
│ │ │ │ ├── a00083.html
│ │ │ │ ├── a00084_a8_cgraph.png
│ │ │ │ ├── a00084_a9_cgraph.png
│ │ │ │ ├── a00084.html
│ │ │ │ ├── a00085.html
│ │ │ │ ├── a00086.html
│ │ │ │ ├── a00087.html
│ │ │ │ ├── a00088.html
│ │ │ │ ├── a00089.html
│ │ │ │ ├── a00090.html
│ │ │ │ ├── a00091.html
│ │ │ │ ├── a00092.html
│ │ │ │ ├── a00093.html
│ │ │ │ ├── a00094.html
│ │ │ │ ├── a00095_a20_cgraph.png
│ │ │ │ ├── a00095.html
│ │ │ │ ├── a00096_a23_cgraph.png
│ │ │ │ ├── a00096.html
│ │ │ │ ├── a00097_a22_cgraph.png
│ │ │ │ ├── a00097_a7_cgraph.png
│ │ │ │ ├── a00097_a8_cgraph.png
│ │ │ │ ├── a00097.html
│ │ │ │ ├── a00098_a27_cgraph.png
│ │ │ │ ├── a00098.html
│ │ │ │ ├── a00099_a29_cgraph.png
│ │ │ │ ├── a00099.html
│ │ │ │ ├── a00103.png
│ │ │ │ ├── a00104.png
│ │ │ │ ├── a00105.png
│ │ │ │ ├── a00106.png
│ │ │ │ ├── a00107.png
│ │ │ │ ├── a00108.png
│ │ │ │ ├── a00109.png
│ │ │ │ ├── a00110.png
│ │ │ │ ├── a00111.png
│ │ │ │ ├── a00112.png
│ │ │ │ ├── a00113.png
│ │ │ │ ├── a00114.png
│ │ │ │ ├── a00115.png
│ │ │ │ ├── a00116.png
│ │ │ │ ├── a00117.png
│ │ │ │ ├── a00118.png
│ │ │ │ ├── a00119.png
│ │ │ │ ├── a00120.png
│ │ │ │ ├── a00121.png
│ │ │ │ ├── a00122.png
│ │ │ │ ├── a00123.png
│ │ │ │ ├── a00124.png
│ │ │ │ ├── a00125.png
│ │ │ │ ├── a00126.png
│ │ │ │ ├── a00127.png
│ │ │ │ ├── a00128.png
│ │ │ │ ├── a00129.png
│ │ │ │ ├── a00130.png
│ │ │ │ ├── a00131.png
│ │ │ │ ├── a00132.png
│ │ │ │ ├── a00133.png
│ │ │ │ ├── a00134.png
│ │ │ │ ├── a00135.png
│ │ │ │ ├── a00136.png
│ │ │ │ ├── a00137.png
│ │ │ │ ├── annotated.html
│ │ │ │ ├── classes.html
│ │ │ │ ├── doxygen.css
│ │ │ │ ├── doxygen.png
│ │ │ │ ├── files.html
│ │ │ │ ├── ftv2blank.png
│ │ │ │ ├── ftv2doc.png
│ │ │ │ ├── ftv2folderclosed.png
│ │ │ │ ├── ftv2folderopen.png
│ │ │ │ ├── ftv2lastnode.png
│ │ │ │ ├── ftv2link.png
│ │ │ │ ├── ftv2mlastnode.png
│ │ │ │ ├── ftv2mnode.png
│ │ │ │ ├── ftv2node.png
│ │ │ │ ├── ftv2plastnode.png
│ │ │ │ ├── ftv2pnode.png
│ │ │ │ ├── ftv2vertline.png
│ │ │ │ ├── functions.html
│ │ │ │ ├── functions_vars.html
│ │ │ │ ├── globals_defs.html
│ │ │ │ ├── globals_func.html
│ │ │ │ ├── globals.html
│ │ │ │ ├── globals_type.html
│ │ │ │ ├── globals_vars.html
│ │ │ │ ├── graph_legend.dot
│ │ │ │ ├── graph_legend.html
│ │ │ │ ├── graph_legend.png
│ │ │ │ ├── index.hhc
│ │ │ │ ├── index.hhk
│ │ │ │ ├── index.hhp
│ │ │ │ ├── index.html
│ │ │ │ ├── main.html
│ │ │ │ ├── modules.html
│ │ │ │ └── tree.html
│ │ │ ├── IJCAS_v3_n1_pp.122-129.pdf
│ │ │ ├── Makefile
│ │ │ ├── mobisys2003.pdf
│ │ │ ├── README
│ │ │ ├── uip-doc.txt
│ │ │ └── uip-refman.pdf
│ │ ├── README
│ │ ├── uip
│ │ │ ├── slipdev.c
│ │ │ ├── slipdev.h
│ │ │ ├── uip_arch.h
│ │ │ ├── uip_arp.c
│ │ │ ├── uip_arp.h
│ │ │ ├── uip.c
│ │ │ └── uip.h
│ │ └── unix
│ │ ├── main.c
│ │ ├── Makefile
│ │ ├── tapdev.c
│ │ ├── tapdev.h
│ │ ├── uip_arch.c
│ │ └── uipopt.h
│ └── uip-1.0-源码
│ ├── apps
│ │ ├── dhcpc
│ │ │ ├── dhcpc.c
│ │ │ ├── dhcpc.h
│ │ │ └── Makefile.dhcpc
│ │ ├── hello-world
│ │ │ ├── hello-world.c
│ │ │ ├── hello-world.h
│ │ │ └── Makefile.hello-world
│ │ ├── README
│ │ ├── resolv
│ │ │ ├── Makefile.resolv
│ │ │ ├── resolv.c
│ │ │ └── resolv.h
│ │ ├── smtp
│ │ │ ├── Makefile.smtp
│ │ │ ├── makestrings
│ │ │ ├── smtp.c
│ │ │ ├── smtp.h
│ │ │ ├── smtp-strings
│ │ │ ├── smtp-strings.c
│ │ │ └── smtp-strings.h
│ │ ├── telnetd
│ │ │ ├── Makefile.telnetd
│ │ │ ├── shell.c
│ │ │ ├── shell.h
│ │ │ ├── telnetd.c
│ │ │ └── telnetd.h
│ │ ├── webclient
│ │ │ ├── Makefile.webclient
│ │ │ ├── makestrings
│ │ │ ├── webclient.c
│ │ │ ├── webclient.h
│ │ │ ├── webclient-strings
│ │ │ ├── webclient-strings.c
│ │ │ └── webclient-strings.h
│ │ └── webserver
│ │ ├── httpd.c
│ │ ├── httpd-cgi.c
│ │ ├── httpd-cgi.h
│ │ ├── httpd-fs
│ │ │ ├── 404.html
│ │ │ ├── fade.png
│ │ │ ├── files.shtml
│ │ │ ├── footer.html
│ │ │ ├── header.html
│ │ │ ├── index.html
│ │ │ ├── processes.shtml
│ │ │ ├── stats.shtml
│ │ │ ├── style.css
│ │ │ └── tcp.shtml
│ │ ├── httpd-fs.c
│ │ ├── httpd-fsdata.c
│ │ ├── httpd-fsdata.h
│ │ ├── httpd-fs.h
│ │ ├── httpd.h
│ │ ├── http-strings
│ │ ├── http-strings.c
│ │ ├── http-strings.h
│ │ ├── Makefile.webserver
│ │ ├── makefsdata
│ │ ├── makestrings
│ │ └── webserver.h
│ ├── doc
│ │ ├── Doxyfile
│ │ ├── doxygen.sty
│ │ ├── example-mainloop-with-arp.c
│ │ ├── example-mainloop-without-arp.c
│ │ ├── examples.txt
│ │ ├── header.tex
│ │ ├── html
│ │ │ ├── a00036.html
│ │ │ ├── a00037.html
│ │ │ ├── a00038.html
│ │ │ ├── a00039.html
│ │ │ ├── a00040.html
│ │ │ ├── a00041.html
│ │ │ ├── a00042.html
│ │ │ ├── a00043.html
│ │ │ ├── a00044.html
│ │ │ ├── a00045.html
│ │ │ ├── a00046.html
│ │ │ ├── a00047.html
│ │ │ ├── a00048.html
│ │ │ ├── a00049.html
│ │ │ ├── a00050.html
│ │ │ ├── a00051.html
│ │ │ ├── a00077.html
│ │ │ ├── a00078.html
│ │ │ ├── a00079.html
│ │ │ ├── a00080.html
│ │ │ ├── a00081.html
│ │ │ ├── a00082.html
│ │ │ ├── a00083.html
│ │ │ ├── a00084.html
│ │ │ ├── a00085.html
│ │ │ ├── a00086.html
│ │ │ ├── a00087.html
│ │ │ ├── a00088.html
│ │ │ ├── a00089.html
│ │ │ ├── a00090.html
│ │ │ ├── a00091.html
│ │ │ ├── a00092.html
│ │ │ ├── a00093.html
│ │ │ ├── a00094.html
│ │ │ ├── a00095.html
│ │ │ ├── a00096.html
│ │ │ ├── a00097.html
│ │ │ ├── a00100.html
│ │ │ ├── a00101.html
│ │ │ ├── a00102.html
│ │ │ ├── a00103.html
│ │ │ ├── a00104.html
│ │ │ ├── a00105.html
│ │ │ ├── a00107.html
│ │ │ ├── a00110.html
│ │ │ ├── a00111.html
│ │ │ ├── a00112.html
│ │ │ ├── a00113.html
│ │ │ ├── a00114.html
│ │ │ ├── a00120.html
│ │ │ ├── a00121.html
│ │ │ ├── a00123.html
│ │ │ ├── a00124.html
│ │ │ ├── a00125.html
│ │ │ ├── a00127.html
│ │ │ ├── a00128.html
│ │ │ ├── a00129.html
│ │ │ ├── a00130.html
│ │ │ ├── a00131.html
│ │ │ ├── a00132.html
│ │ │ ├── a00134.html
│ │ │ ├── a00135.html
│ │ │ ├── a00136.html
│ │ │ ├── a00137.html
│ │ │ ├── a00138.html
│ │ │ ├── a00139.html
│ │ │ ├── a00140.html
│ │ │ ├── a00141.html
│ │ │ ├── a00142.html
│ │ │ ├── a00143.html
│ │ │ ├── a00144.html
│ │ │ ├── a00145.html
│ │ │ ├── a00146.html
│ │ │ ├── a00147.html
│ │ │ ├── a00148.html
│ │ │ ├── a00149.html
│ │ │ ├── a00150.html
│ │ │ ├── a00151.html
│ │ │ ├── a00152.html
│ │ │ ├── a00153.html
│ │ │ ├── a00154.html
│ │ │ ├── a00155.html
│ │ │ ├── a00156.html
│ │ │ ├── a00157.html
│ │ │ ├── a00158.html
│ │ │ ├── a00159.html
│ │ │ ├── a00160.html
│ │ │ ├── a00161.html
│ │ │ ├── a00162.html
│ │ │ ├── a00163.html
│ │ │ ├── a00164.html
│ │ │ ├── a00168.html
│ │ │ ├── a00169.html
│ │ │ ├── a00170.html
│ │ │ ├── a00171.html
│ │ │ ├── a00172.html
│ │ │ ├── a00173.html
│ │ │ ├── a00174.html
│ │ │ ├── a00175.html
│ │ │ ├── a00176.html
│ │ │ ├── a00177.html
│ │ │ ├── a00178.html
│ │ │ ├── a00179.html
│ │ │ ├── a00180.html
│ │ │ ├── a00181.html
│ │ │ ├── a00182.html
│ │ │ ├── a00183.html
│ │ │ ├── a00184.html
│ │ │ ├── a00185.html
│ │ │ ├── a00186.html
│ │ │ ├── a00187.html
│ │ │ ├── a00188.html
│ │ │ ├── a00189.html
│ │ │ ├── a00190.html
│ │ │ ├── a00191.html
│ │ │ ├── a00192.html
│ │ │ ├── a00193.html
│ │ │ ├── a00194.html
│ │ │ ├── a00195.html
│ │ │ ├── a00196.html
│ │ │ ├── a00197.html
│ │ │ ├── a00198.html
│ │ │ ├── a00199.html
│ │ │ ├── a00200.html
│ │ │ ├── a00201.html
│ │ │ ├── a00202.html
│ │ │ ├── a00203.html
│ │ │ ├── a00204.html
│ │ │ ├── a00205.html
│ │ │ ├── a00206.html
│ │ │ ├── a00207.html
│ │ │ ├── annotated.html
│ │ │ ├── classes.html
│ │ │ ├── doxygen.css
│ │ │ ├── doxygen.png
│ │ │ ├── examples.html
│ │ │ ├── files.html
│ │ │ ├── ftv2blank.png
│ │ │ ├── ftv2doc.png
│ │ │ ├── ftv2folderclosed.png
│ │ │ ├── ftv2folderopen.png
│ │ │ ├── ftv2lastnode.png
│ │ │ ├── ftv2link.png
│ │ │ ├── ftv2mlastnode.png
│ │ │ ├── ftv2mnode.png
│ │ │ ├── ftv2node.png
│ │ │ ├── ftv2plastnode.png
│ │ │ ├── ftv2pnode.png
│ │ │ ├── ftv2vertline.png
│ │ │ ├── functions.html
│ │ │ ├── functions_vars.html
│ │ │ ├── globals_0x61.html
│ │ │ ├── globals_0x62.html
│ │ │ ├── globals_0x64.html
│ │ │ ├── globals_0x65.html
│ │ │ ├── globals_0x66.html
│ │ │ ├── globals_0x68.html
│ │ │ ├── globals_0x69.html
│ │ │ ├── globals_0x6c.html
│ │ │ ├── globals_0x6d.html
│ │ │ ├── globals_0x6e.html
│ │ │ ├── globals_0x70.html
│ │ │ ├── globals_0x72.html
│ │ │ ├── globals_0x73.html
│ │ │ ├── globals_0x74.html
│ │ │ ├── globals_0x75.html
│ │ │ ├── globals_0x77.html
│ │ │ ├── globals_defs_0x61.html
│ │ │ ├── globals_defs_0x62.html
│ │ │ ├── globals_defs_0x64.html
│ │ │ ├── globals_defs_0x65.html
│ │ │ ├── globals_defs_0x66.html
│ │ │ ├── globals_defs_0x68.html
│ │ │ ├── globals_defs_0x69.html
│ │ │ ├── globals_defs_0x6c.html
│ │ │ ├── globals_defs_0x6d.html
│ │ │ ├── globals_defs_0x6e.html
│ │ │ ├── globals_defs_0x70.html
│ │ │ ├── globals_defs_0x72.html
│ │ │ ├── globals_defs_0x73.html
│ │ │ ├── globals_defs_0x74.html
│ │ │ ├── globals_defs_0x75.html
│ │ │ ├── globals_defs_0x77.html
│ │ │ ├── globals_defs.html
│ │ │ ├── globals_func.html
│ │ │ ├── globals.html
│ │ │ ├── globals_type.html
│ │ │ ├── globals_vars.html
│ │ │ ├── hierarchy.html
│ │ │ ├── index.hhc
│ │ │ ├── index.hhk
│ │ │ ├── index.hhp
│ │ │ ├── index.html
│ │ │ ├── main.html
│ │ │ ├── modules.html
│ │ │ ├── tab_b.gif
│ │ │ ├── tab_l.gif
│ │ │ ├── tab_r.gif
│ │ │ ├── tabs.css
│ │ │ └── tree.html
│ │ ├── Makefile
│ │ ├── mobisys2003.pdf
│ │ ├── pt-doc.txt
│ │ ├── README
│ │ ├── sicslogo.pdf
│ │ ├── uip-code-style.c
│ │ ├── uip-code-style.txt
│ │ ├── uip-doc.txt
│ │ └── uip-refman.pdf
│ ├── lib
│ │ ├── memb.c
│ │ └── memb.h
│ ├── README
│ ├── uip
│ │ ├── clock.h
│ │ ├── lc-addrlabels.h
│ │ ├── lc.h
│ │ ├── lc-switch.h
│ │ ├── Makefile.include
│ │ ├── psock.c
│ │ ├── psock.h
│ │ ├── pt.h
│ │ ├── timer.c
│ │ ├── timer.h
│ │ ├── uip_arch.h
│ │ ├── uip_arp.c
│ │ ├── uip_arp.h
│ │ ├── uip.c
│ │ ├── uip-fw.c
│ │ ├── uip-fw.h
│ │ ├── uip.h
│ │ ├── uiplib.c
│ │ ├── uiplib.h
│ │ ├── uip-neighbor.c
│ │ ├── uip-neighbor.h
│ │ ├── uipopt.h
│ │ ├── uip-split.c
│ │ └── uip-split.h
│ ├── uip-1.0-changelog.txt
│ └── unix
│ ├── clock-arch.c
│ ├── clock-arch.h
│ ├── main.c
│ ├── Makefile
│ ├── tapdev.c
│ ├── tapdev.h
│ └── uip-conf.h
├── USER-MAIN
│ ├── test.asm
│ ├── USER-CONF.h
│ └── USER-MAIN.c
└── 示例-剪切板.shs
42 directories, 600 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论