├── .gitignore ├── Makefile ├── README.md ├── api ├── Makefile ├── dagaddr │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── cpp │ │ ├── .gitignore │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── dagaddr.cpp │ │ ├── mainpage.h │ │ ├── test.cpp │ │ ├── utils.cpp │ │ └── utils.hpp │ └── python │ │ ├── Makefile │ │ ├── dagaddr.i │ │ └── test.py ├── include │ ├── Xkeys.h │ ├── Xsecurity.h │ ├── Xsocket.h │ ├── clicknetxia.h │ ├── dagaddr.hpp │ ├── xia.h │ ├── xip.h │ ├── xns.h │ └── xssl.h ├── lib │ ├── .gitignore │ └── README ├── wrapper │ ├── Makefile │ ├── test │ │ ├── .gitignore │ │ ├── Makefile │ │ └── xwtest.c │ └── xwrap.c ├── xsocket │ ├── .gitignore │ ├── Makefile │ ├── Xaccept.c │ ├── Xbind.c │ ├── XbindPush.c │ ├── Xclose.c │ ├── Xconnect.c │ ├── Xdoc.h │ ├── Xfcntl.c │ ├── Xfork.c │ ├── XgetChunkStatus.c │ ├── XgetDAGbyName.c │ ├── Xgetaddrinfo.c │ ├── Xinit.c │ ├── Xinit.h │ ├── Xkeys.c │ ├── Xlisten.c │ ├── Xmsg.c │ ├── Xnotify.c │ ├── XpushChunkto.c │ ├── XputChunk.c │ ├── XreadChunk.c │ ├── Xrecv.c │ ├── XrecvChunkfrom.c │ ├── XrequestChunk.c │ ├── Xsecurity.c │ ├── Xselect.c │ ├── Xsend.c │ ├── Xsetsockopt.c │ ├── Xsocket.c │ ├── XsocketsAPI.cfg │ ├── XupdateAD.c │ ├── XupdateNameServerDAG.c │ ├── Xutil.c │ ├── Xutil.h │ ├── minini │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── minGlue-FatFs.h │ │ ├── minGlue-ccs.h │ │ ├── minGlue-efsl.h │ │ ├── minGlue-mdd.h │ │ ├── minGlue-stdio.h │ │ ├── minGlue.h │ │ ├── minIni.c │ │ ├── minIni.h │ │ ├── minIni.pdf │ │ ├── test.c │ │ ├── test.ini │ │ ├── testplain.ini │ │ └── wxMinIni.h │ ├── python │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── c_xsocket.i │ │ ├── doc │ │ │ ├── Makefile │ │ │ └── source │ │ │ │ ├── conf.py │ │ │ │ ├── functions.rst │ │ │ │ ├── index.rst │ │ │ │ └── intro.rst │ │ └── oo_wrapper │ │ │ └── xsocket.py │ ├── state.c │ ├── state.h │ ├── test │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── addrinfo_test.c │ │ ├── dag_test.c │ │ ├── opttest.c │ │ ├── poll_test.c │ │ ├── select_test.c │ │ └── xwtest.c │ ├── unittest.cpp │ └── xia.proto └── xssl │ ├── Doxyfile │ ├── Makefile │ ├── XSSL_CTX_new.c │ ├── XSSL_accept.c │ ├── XSSL_connect.c │ ├── XSSL_new.c │ ├── XSSL_read.c │ ├── XSSL_set_fd.c │ ├── XSSL_shutdown.c │ ├── XSSL_util.c │ └── XSSL_write.c ├── applications ├── Makefile ├── demo │ ├── Makefile │ └── web_demo │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── check_beacon.py │ │ ├── foxyproxy-xia.xml │ │ ├── hello_service.py │ │ ├── resources │ │ ├── dwntick.gif │ │ ├── uptick.gif │ │ ├── video.html │ │ └── video.ogv │ │ ├── stock_service.py │ │ ├── video_server.c │ │ ├── web_demo.html │ │ ├── xia_address.py │ │ └── xsockconf.ini ├── example │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── chunk_copy_client.c │ ├── chunk_copy_server.c │ ├── dag_manipulation │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── dagaddr_example.cpp │ │ └── dagaddr_example.py │ ├── echoclient-datagram.c │ ├── echoclient-datagram.py │ ├── echoclient-simple.c │ ├── echoclient.c │ ├── echoclient.py │ ├── echoserver.c │ ├── echoserver.py │ ├── push_xftp_client.c │ ├── push_xftp_recv_client.c │ ├── push_xftp_recv_server.c │ ├── push_xftp_server.c │ ├── time_of_day_client.c │ ├── time_of_day_server.c │ ├── xftp_basic_client.c │ ├── xftp_basic_server.c │ ├── xsockconf.ini │ └── xssl │ │ ├── Makefile │ │ ├── echoclient.c │ │ └── echoserver.c ├── irc │ ├── Makefile │ ├── README.md │ ├── miniircd │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── miniircd │ │ ├── test │ │ └── test.py │ ├── sic │ │ ├── .gitignore │ │ ├── .hgtags │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── config.mk │ │ ├── sic.1 │ │ ├── sic.c │ │ └── util.c │ └── xsockconf.ini ├── multicast │ ├── .gitignore │ ├── Makefile │ ├── multicast_endhost.c │ ├── multicast_rp.c │ ├── multicast_source.c │ └── xsockconf.ini ├── neitris-46 │ ├── antidote.bmp │ ├── brick1.bmp │ ├── brick2.bmp │ ├── brick3.bmp │ ├── brick4.bmp │ ├── brick5.bmp │ ├── brick6.bmp │ ├── brick7.bmp │ ├── bricks.bmp │ ├── clearscr.bmp │ ├── crystalball.bmp │ ├── donator.bmp │ ├── dot1.bmp │ ├── dot2.bmp │ ├── dot3.bmp │ ├── dot4.bmp │ ├── dot5.bmp │ ├── dot6.bmp │ ├── dot7.bmp │ ├── dotter.bmp │ ├── escalator.bmp │ ├── info.png │ ├── neitris.py │ ├── neitris_cfg.py │ ├── neitris_class.py │ ├── neitris_cli.py │ ├── neitris_data.py │ ├── neitris_server.py │ ├── neitris_utils.py │ ├── rabbit.bmp │ ├── reversekeys.bmp │ ├── swapscr.bmp │ ├── turtle.bmp │ ├── updown.bmp │ └── zed.bmp ├── tcp │ ├── README │ ├── ec.py │ ├── es.py │ └── pweb ├── tinyhttpd │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── htdocs │ │ ├── README │ │ ├── check.cgi │ │ ├── color.cgi │ │ └── index.html │ ├── httpd.c │ ├── simpleclient.c │ └── simpleclient.c.orig ├── web │ ├── .gitignore │ ├── bad_content_warning.py │ ├── malicious_router_publisher.py │ ├── proxy.py │ ├── webserver.py │ ├── www │ │ ├── demo.html │ │ ├── img │ │ │ ├── anon.jpg │ │ │ ├── image.jpg │ │ │ ├── info.png │ │ │ ├── photo-2.jpg │ │ │ └── plane.jpg │ │ ├── simple.html │ │ ├── simple_malicious_explanation.html │ │ ├── simple_malicious_explanation_processed.html │ │ ├── stock.html │ │ ├── very_simple.html │ │ ├── xia │ │ │ ├── Event-News │ │ │ │ └── Talks.html │ │ │ ├── Events-News │ │ │ │ ├── events-news.html │ │ │ │ ├── styled-2 │ │ │ │ │ ├── files │ │ │ │ │ │ └── dsc07537-2.jpg │ │ │ │ │ └── index.html │ │ │ │ ├── styled-3 │ │ │ │ │ └── index.html │ │ │ │ ├── styled-4 │ │ │ │ │ ├── files │ │ │ │ │ │ ├── photo-1.jpg │ │ │ │ │ │ └── photo-2.jpg │ │ │ │ │ └── index.html │ │ │ │ └── styled │ │ │ │ │ ├── files │ │ │ │ │ ├── room-2.jpg │ │ │ │ │ └── stairs-3-3.jpg │ │ │ │ │ └── index.html │ │ │ ├── acknowledgements │ │ │ │ ├── acknowledgements.html │ │ │ │ └── files │ │ │ │ │ ├── cise-3-2.gif │ │ │ │ │ └── nsf_sm-2.jpg │ │ │ ├── contacts │ │ │ │ └── contacts.html │ │ │ ├── index.html │ │ │ ├── publications │ │ │ │ └── publications.html │ │ │ ├── resources │ │ │ │ ├── Documents │ │ │ │ │ ├── 2nd Bi-Annual XIA Project Meeting.pdf │ │ │ │ │ ├── RapidWeaver-5upgrade-license.pdf │ │ │ │ │ ├── SCION-august-2011 slides.pdf │ │ │ │ │ ├── SCION-august-2011.pdf │ │ │ │ │ ├── XIA Workshop Kickoff Meeting.pdf │ │ │ │ │ ├── XIA-GENI-GEC.pdf │ │ │ │ │ ├── XIA-PI1.pdf │ │ │ │ │ ├── XIA-Stanford.pdf │ │ │ │ │ ├── cscw2012 449.pdf │ │ │ │ │ ├── cscw2012_Github-paper-FinalVersion-1.pdf │ │ │ │ │ ├── photo 1.JPG │ │ │ │ │ ├── photo 2.JPG │ │ │ │ │ ├── xia-hotnets.pdf │ │ │ │ │ └── xia-security-arch.pdf │ │ │ │ ├── Kick-Off-Meeting.rtf │ │ │ │ ├── Second-Bi-AnnualXIA.rtf │ │ │ │ ├── XIA Workshop Kickoff Meeting.rwsw.zip │ │ │ │ ├── XIA Workshop Kickoff Meeting.rwsw │ │ │ │ │ ├── Contents.plist │ │ │ │ │ ├── DefaultPageAttributes │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── 1-XIA-Workshop-Kickoff-Meeting │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ └── README.txt │ │ │ │ ├── XIA-old.rwsw │ │ │ │ │ ├── Contents.plist │ │ │ │ │ ├── DefaultPageAttributes │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── 1-XIA-Overview │ │ │ │ │ │ │ ├── ChildPages │ │ │ │ │ │ │ │ ├── 1-Technical-Approach │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 2-XIA-Team- │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 3-Publications │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 4-Presentations │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 5-Events-and-News- │ │ │ │ │ │ │ │ │ ├── ChildPages │ │ │ │ │ │ │ │ │ │ ├── 1-XIA-Kickoff │ │ │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ ├── 2-2nd-Bi-Annual-XIA-Project-Meeting │ │ │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 6-Acknowledgements │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 7-Contact-Us │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ └── README.txt │ │ │ │ ├── XIA-tempupdate.rwsw.zip │ │ │ │ ├── XIA-tempupdate.rwsw │ │ │ │ │ ├── Contents.plist │ │ │ │ │ ├── DefaultPageAttributes │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── 1-XIA-Overview │ │ │ │ │ │ │ ├── ChildPages │ │ │ │ │ │ │ │ ├── 1-Technical-Approach │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 2-XIA-Team- │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 3-Publications │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 4-Presentations │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 5-Events-and-News- │ │ │ │ │ │ │ │ │ ├── ChildPages │ │ │ │ │ │ │ │ │ │ ├── 1-XIA-Kickoff │ │ │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 6-Acknowledgements │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 7-Contact-Us │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ └── README.txt │ │ │ │ ├── XIA.rwsw.zip │ │ │ │ ├── XIA.rwsw │ │ │ │ │ ├── Contents.plist │ │ │ │ │ ├── DefaultPageAttributes │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── 1-XIA-Overview │ │ │ │ │ │ │ ├── ChildPages │ │ │ │ │ │ │ │ ├── 1-Technical-Approach │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 2-XIA-Team- │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 3-Publications │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 4-Presentations │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 5-Events-and-News- │ │ │ │ │ │ │ │ │ ├── ChildPages │ │ │ │ │ │ │ │ │ │ ├── 1-3rd-XIA-Meeting │ │ │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ ├── 2-XIA-Demo-at-GEC12 │ │ │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ ├── 3-2nd-XIA-Meeting │ │ │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ ├── 4-XIA-Kickoff-Meeting │ │ │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 6-Acknowledgements │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ ├── 7-Contact-Us │ │ │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ ├── Contents.plist │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ ├── Body.as │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ │ └── PageAttributes │ │ │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ │ └── Contents.plist │ │ │ │ │ └── README.txt │ │ │ │ └── events-news.html │ │ │ ├── rw_common │ │ │ │ ├── themes │ │ │ │ │ └── smartbusiness │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── sidebar │ │ │ │ │ │ │ ├── sidebar_hide.css │ │ │ │ │ │ │ ├── sidebar_left.css │ │ │ │ │ │ │ └── sidebar_right.css │ │ │ │ │ │ ├── styles │ │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ │ └── grey.css │ │ │ │ │ │ └── width │ │ │ │ │ │ │ ├── width_1000.css │ │ │ │ │ │ │ ├── width_680.css │ │ │ │ │ │ │ ├── width_default.css │ │ │ │ │ │ │ └── width_variable.css │ │ │ │ │ │ ├── handheld.css │ │ │ │ │ │ ├── ie.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── button_normal.png │ │ │ │ │ │ ├── button_over.png │ │ │ │ │ │ ├── content_hide_bg.png │ │ │ │ │ │ ├── content_sideleft_bg.png │ │ │ │ │ │ ├── content_sideright_bg.png │ │ │ │ │ │ ├── content_top_hide.png │ │ │ │ │ │ ├── content_top_left.png │ │ │ │ │ │ ├── content_top_right.png │ │ │ │ │ │ ├── footer_sidehide_bg.png │ │ │ │ │ │ ├── footer_sideleft_bg.png │ │ │ │ │ │ ├── footer_sideright_bg.png │ │ │ │ │ │ ├── grey │ │ │ │ │ │ │ └── header_bg.png │ │ │ │ │ │ ├── header_bg.png │ │ │ │ │ │ ├── sub_bullet_blue.png │ │ │ │ │ │ └── sub_bullet_grey.png │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── print.css │ │ │ │ │ │ └── styles.css │ │ │ │ └── version.txt │ │ │ ├── sitemap.xml │ │ │ ├── team │ │ │ │ ├── XIA-team.html │ │ │ │ └── files │ │ │ │ │ ├── pasted-graphic-1.jpg │ │ │ │ │ ├── pasted-graphic-3.jpg │ │ │ │ │ └── pasted-graphic.jpg │ │ │ └── technical │ │ │ │ ├── files │ │ │ │ ├── image002.jpg │ │ │ │ ├── image004.jpg │ │ │ │ └── image006.jpg │ │ │ │ └── technical-approach.html │ │ └── xia_service.html │ ├── xia_address.py │ ├── xiaproxy.py │ └── xsockconf.ini ├── xnetcat │ ├── Makefile │ └── xnetcat.c ├── xping │ ├── Makefile │ └── xping.c ├── xregister │ ├── Makefile │ └── xregister.c └── xtraceroute │ ├── Makefile │ └── xtraceroute.c ├── bin ├── .gitignore ├── clickgraph ├── explorer │ ├── click_control.py │ ├── explorer │ └── xroute.py ├── genkeys.py ├── read_topology ├── run_web_demo ├── xconfig.py ├── xdag ├── xdebug ├── xdev ├── xianet ├── xidgen ├── xlog ├── xnetstat ├── xroute ├── xroute_test.py ├── xsockconf.ini └── xwrap ├── click ├── click-2.0.1 ├── .gitignore ├── AUTHORS ├── COPYING ├── DISTFILES ├── FAQ ├── INSTALL ├── LICENSE ├── Makefile.in ├── NEWS ├── README ├── aclocal.m4 ├── apps │ ├── ClickController │ │ ├── ClickController.java │ │ ├── ClickException.java │ │ ├── ControlSocket.java │ │ ├── NewConnectionDialog.java │ │ ├── Pair.java │ │ ├── README │ │ ├── RouterTreeModel.java │ │ ├── StringUtils.java │ │ └── Util.java │ ├── clicky │ │ ├── AUTHORS │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── clicky.glade │ │ ├── clicky.gladep │ │ ├── clicky.gtkrc │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── images │ │ │ └── throbber.gif │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── callbacks.h │ │ │ ├── cdriver.cc │ │ │ ├── cdriver.hh │ │ │ ├── clicky.cc │ │ │ ├── crouter.cc │ │ │ ├── crouter.hh │ │ │ ├── ddecor.cc │ │ │ ├── ddecor.hh │ │ │ ├── dialogs.cc │ │ │ ├── dstyle.cc │ │ │ ├── dstyle.hh │ │ │ ├── dwidget.cc │ │ │ ├── dwidget.hh │ │ │ ├── gathererror.cc │ │ │ ├── gathererror.hh │ │ │ ├── hvalues.cc │ │ │ ├── hvalues.hh │ │ │ ├── interface.c │ │ │ ├── interface.h │ │ │ ├── permstr.cc │ │ │ ├── permstr.hh │ │ │ ├── rectangle.hh │ │ │ ├── rectsearch.hh │ │ │ ├── ref.hh │ │ │ ├── scopechain.cc │ │ │ ├── scopechain.hh │ │ │ ├── support.c │ │ │ ├── support.h │ │ │ ├── tmain.cc │ │ │ ├── tmain.hh │ │ │ ├── transform.cc │ │ │ ├── transform.hh │ │ │ ├── wdiagram.cc │ │ │ ├── wdiagram.hh │ │ │ ├── whandler.cc │ │ │ ├── whandler.hh │ │ │ ├── wmain.cc │ │ │ ├── wmain.hh │ │ │ └── xcallbacks.c │ └── csclient │ │ ├── csclient.cc │ │ ├── csclient.hh │ │ └── test.click ├── bsdmodule │ ├── BSDmakefile │ ├── Makefile.in │ ├── clickfs.cc │ ├── clickfs_element.cc │ ├── clickfs_tree.cc │ ├── clickfs_tree.hh │ ├── clickfs_vnops.cc │ ├── config.cc │ ├── kernelerror.cc │ ├── kernelerror.hh │ ├── massage-vnode_if.pl │ ├── module.cc │ ├── module_c.c │ ├── modulepriv.hh │ └── sched.cc ├── click-buildtool.in ├── click-compile.in ├── click-mkelemmap ├── click.spec ├── conf │ ├── README │ ├── click-mkclgw.pl │ ├── delay.click │ ├── dnsproxy.click │ ├── example.clgw │ ├── fake-iprouter.click │ ├── fastudpsrc.click │ ├── fromhost-tunnel.click │ ├── geni │ │ ├── cmu-server.click │ │ ├── geni-test-4AD │ │ │ └── sub │ │ │ │ ├── host.click.template │ │ │ │ ├── router.click.template │ │ │ │ ├── xconfig.py │ │ │ │ └── xia_address.click.template │ │ ├── geni-test │ │ │ ├── code_update_all_nodes.sh │ │ │ ├── kill_proxy_host0.sh │ │ │ ├── kill_service_host1.sh │ │ │ ├── setup_click_host0.sh │ │ │ ├── setup_click_host1.sh │ │ │ ├── setup_click_router0.sh │ │ │ ├── setup_click_router1.sh │ │ │ ├── setup_network_evolve.sh │ │ │ ├── setup_proxy_host0.sh │ │ │ ├── setup_service_host1.sh │ │ │ └── sub │ │ │ │ ├── code_update.sh │ │ │ │ ├── host0.click │ │ │ │ ├── host1.click │ │ │ │ ├── router0.click │ │ │ │ └── router1.click │ │ ├── host0.click │ │ ├── host1-connect-cmu.click │ │ ├── host1.click │ │ ├── init-scripts │ │ │ ├── build-xia-click-ubuntu.sh │ │ │ ├── build-xia-click-ubuntu11-xia-internal-use.sh │ │ │ ├── build-xia-click-ubuntu11.sh │ │ │ ├── run_click_bootstrap │ │ │ ├── run_click_bootstrap_with_geni_visualizer │ │ │ ├── run_demo │ │ │ └── sub │ │ │ │ ├── bootstrap_stop.sh │ │ │ │ ├── click_host_start.sh │ │ │ │ ├── click_router_start.sh │ │ │ │ ├── click_stop.sh │ │ │ │ ├── set_ad_for_nameserver.sh │ │ │ │ ├── set_hid_for_nameserver.sh │ │ │ │ ├── web_demo_proxy_start.sh │ │ │ │ ├── web_demo_proxy_stop.sh │ │ │ │ ├── web_demo_service_start.sh │ │ │ │ ├── web_demo_service_stop.sh │ │ │ │ ├── xhcp_client_start.sh │ │ │ │ ├── xhcp_server_start.sh │ │ │ │ ├── xnameservice_start.sh │ │ │ │ └── xroute_start.sh │ │ ├── readme.txt │ │ ├── router0-dummy.click │ │ ├── router0.click │ │ ├── router1-connect-cmu.click │ │ ├── router1-dummy.click │ │ ├── router1.click │ │ ├── stats │ │ │ ├── check_beacon.py │ │ │ ├── check_beacon_orig.py │ │ │ ├── link-state-pg40.sh │ │ │ ├── link-state-pg42.sh │ │ │ ├── link-state-pg55.sh │ │ │ ├── read_stats.py │ │ │ ├── xia-dag-clfy.sh │ │ │ ├── xia-link-state-cmu.sh │ │ │ └── xia-link-state.sh │ │ ├── visualizer-scripts │ │ │ ├── change_mac_address.sh │ │ │ ├── prep1.py │ │ │ ├── setup_python_mysql.sh │ │ │ ├── updateForwardingRate.py │ │ │ └── updateState.py │ │ ├── xia-demo-scripts │ │ │ ├── cleanup.sh │ │ │ ├── cleanup_anycast_laptop.sh │ │ │ ├── code_update_all_nodes.sh │ │ │ ├── code_update_laptop.sh │ │ │ ├── setup_anycast_laptop.sh │ │ │ ├── setup_end_host_evolve.sh │ │ │ ├── setup_network_evolve.sh │ │ │ └── sub_scripts │ │ │ │ ├── check_beacon_router1.sh │ │ │ │ ├── code_update.sh │ │ │ │ ├── kill_proxy_host0.sh │ │ │ │ ├── kill_service_host1.sh │ │ │ │ ├── kill_visualizer.sh │ │ │ │ ├── setup_beacon_host0.sh │ │ │ │ ├── setup_click_end_host_evolve_host0.sh │ │ │ │ ├── setup_click_end_host_evolve_host1.sh │ │ │ │ ├── setup_click_end_host_evolve_router0.sh │ │ │ │ ├── setup_click_end_host_evolve_router1.sh │ │ │ │ ├── setup_click_network_evolve_host0.sh │ │ │ │ ├── setup_click_network_evolve_host1.sh │ │ │ │ ├── setup_click_network_evolve_router0.sh │ │ │ │ ├── setup_click_network_evolve_router1.sh │ │ │ │ ├── setup_proxy_host0.sh │ │ │ │ ├── setup_service_host1.sh │ │ │ │ ├── setup_visualizer_DB_host0.sh │ │ │ │ ├── setup_visualizer_host0.sh │ │ │ │ ├── setup_visualizer_host1.sh │ │ │ │ ├── setup_visualizer_router0.sh │ │ │ │ └── setup_visualizer_router1.sh │ │ └── xia_two_port_four_port_router.click │ ├── grid.click │ ├── icmp6error.click │ ├── ip.clickpat │ ├── ip_ether_pktgen.click │ ├── ip_ether_pktgen_mq.click │ ├── ipsec-router.click │ ├── kernel.clickpat │ ├── localdelay.click │ ├── make-dsdv-config.pl │ ├── make-dsr-config.pl │ ├── make-ip-conf.pl │ ├── make-udpcount.pl │ ├── make-udpgen.pl │ ├── mazu-nat.click │ ├── microbench │ │ ├── .gitignore │ │ ├── analysis │ │ │ ├── common.py │ │ │ ├── content_cache.py │ │ │ ├── content_cache_breakdown.py │ │ │ ├── intra_microbench │ │ │ ├── intra_packet_bench.pdf │ │ │ ├── output_packet_forwarding_breakdown │ │ │ ├── output_tablesize_pareto │ │ │ ├── output_tablesize_uniform │ │ │ ├── packet_forwarding.py │ │ │ ├── packet_forwarding_breakdown.pdf │ │ │ ├── packet_forwarding_breakdown.py │ │ │ ├── perf_callgraph.py │ │ │ ├── perf_callgraph_sample_count.patch │ │ │ ├── plot_intra_packet_bench.gnuplot │ │ │ └── tablesize.py │ │ ├── barrier-test.click │ │ ├── click │ │ ├── common.inc │ │ ├── gen_ip_routes.py │ │ ├── ip6_packetforward.click │ │ ├── ip_packetforward.click │ │ ├── ip_packetforward_fastpath.click │ │ ├── ip_routes.txt │ │ ├── parse_intra.rb │ │ ├── prepare.sh │ │ ├── run_forwarding_intra.sh │ │ ├── run_packetforward.sh │ │ ├── run_tablesize.sh │ │ ├── xia_packetforward_cid_rep.click │ │ ├── xia_packetforward_cid_req_hit.click │ │ ├── xia_packetforward_cid_req_miss.click │ │ ├── xia_packetforward_fallback0.click │ │ ├── xia_packetforward_fallback0_intra.click │ │ ├── xia_packetforward_fallback0_serial.click │ │ ├── xia_packetforward_fallback1.click │ │ ├── xia_packetforward_fallback1_intra.click │ │ ├── xia_packetforward_fallback1_serial.click │ │ ├── xia_packetforward_fallback2.click │ │ ├── xia_packetforward_fallback2_intra.click │ │ ├── xia_packetforward_fallback2_serial.click │ │ ├── xia_packetforward_fallback3.click │ │ ├── xia_packetforward_fallback3_fastpath.click │ │ ├── xia_packetforward_fallback3_intra.click │ │ ├── xia_packetforward_fallback3_serial.click │ │ ├── xia_packetforward_intra.click │ │ ├── xia_packetforward_viapoint.click │ │ ├── xia_tablesize_ad.click │ │ └── xia_tablesize_cid.click │ ├── print-pings.click │ ├── rewriter.click │ ├── sampler.click │ ├── script-parabolawave.click │ ├── script-squarewave.click │ ├── script-trianglewave.click │ ├── simple-dsdv-userlevel.click │ ├── simple-dsdv.click │ ├── stridetest.click │ ├── test-clicky.ccss │ ├── test-clicky.click │ ├── test-device.click │ ├── test-ping-userlevel.click │ ├── test-ping.click │ ├── test-tap.click │ ├── test-tun.click │ ├── test.click │ ├── test2.click │ ├── test3.click │ ├── thomer-nat.click │ ├── udpcount.click │ ├── udpgen.click │ ├── unarp.clickpat │ ├── urewrite.click │ ├── wifi │ │ ├── README │ │ ├── access-point.click │ │ ├── associate.pl │ │ ├── dump.click │ │ ├── gen_config_roofnet.sh │ │ ├── gen_config_safe.pl │ │ ├── pseudo-ibss.click │ │ ├── read_handler │ │ ├── sample.click │ │ ├── scan.pl │ │ ├── set_channel.pl │ │ ├── sr2.click │ │ ├── srcr.click │ │ ├── station.click │ │ └── write_handler │ ├── xia_constants.click │ └── xia_router_lib.click ├── conf_kernel_click.sh ├── conf_user_click.sh ├── conf_user_click_nomt.sh ├── conf_xia ├── config-bsdmodule.h.in ├── config-linuxmodule.h.in ├── config-ns.h.in ├── config-userlevel.h.in ├── config.guess ├── config.h.in ├── config.mk ├── config.mk.in ├── config.sub ├── configure ├── configure.in ├── depcomp ├── doc │ ├── Doxyfile │ ├── Makefile.in │ ├── click-align.1 │ ├── click-combine.1 │ ├── click-devirtualize.1 │ ├── click-elem2man │ ├── click-fastclassifier.1 │ ├── click-flatten.1 │ ├── click-install.1 │ ├── click-mkmindriver.1 │ ├── click-pretty.1 │ ├── click-uncombine.1 │ ├── click-undead.1 │ ├── click-uninstall.1 │ ├── click-xform.1 │ ├── click.1 │ ├── click.5 │ ├── click.o.8 │ ├── click.texi │ ├── elementdoc.7 │ ├── testie.1 │ └── texinfo.tex ├── drivers │ ├── README │ ├── e1000-4.x │ │ ├── LICENSE │ │ ├── README │ │ ├── README-rtm │ │ ├── e1000.7 │ │ ├── e1000.spec │ │ ├── ldistrib.txt │ │ └── src │ │ │ ├── Makefile │ │ │ ├── ans.c │ │ │ ├── ans.h │ │ │ ├── ans_driver.c │ │ │ ├── ans_driver.h │ │ │ ├── ans_hw.c │ │ │ ├── ans_hw.h │ │ │ ├── ans_interface.h │ │ │ ├── ans_os.c │ │ │ ├── ans_os.h │ │ │ ├── base_comm.h │ │ │ ├── e1000.h │ │ │ ├── e1000.h.orig │ │ │ ├── e1000_ethtool.c │ │ │ ├── e1000_hw.c │ │ │ ├── e1000_hw.h │ │ │ ├── e1000_idiag.c │ │ │ ├── e1000_idiag.c.orig │ │ │ ├── e1000_main.c │ │ │ ├── e1000_main.c.orig │ │ │ ├── e1000_osdep.h │ │ │ ├── e1000_param.c │ │ │ ├── e1000_param.c.orig │ │ │ ├── e1000_proc.c │ │ │ ├── idiag_e1000.h │ │ │ ├── idiag_pro.h │ │ │ ├── idiag_test.c │ │ │ ├── kcompat.c │ │ │ └── kcompat.h │ ├── e1000-5.x │ │ ├── LICENSE │ │ ├── README │ │ ├── e1000.7 │ │ ├── e1000.spec │ │ ├── ldistrib.txt │ │ └── src │ │ │ ├── Makefile │ │ │ ├── e1000.h │ │ │ ├── e1000_ethtool.c │ │ │ ├── e1000_hw.c │ │ │ ├── e1000_hw.h │ │ │ ├── e1000_main.c │ │ │ ├── e1000_osdep.h │ │ │ ├── e1000_param.c │ │ │ ├── kcompat.c │ │ │ ├── kcompat.h │ │ │ └── kcompat_ethtool.c │ ├── e1000-7.3.20-polling.patch │ ├── e1000-7.6.15.5-polling.patch │ ├── e1000-7.x │ │ ├── COPYING │ │ ├── README │ │ ├── e1000.7 │ │ ├── e1000.spec │ │ ├── ldistrib.txt │ │ ├── pci.updates │ │ └── src │ │ │ ├── Makefile │ │ │ ├── e1000.h │ │ │ ├── e1000_ethtool.c │ │ │ ├── e1000_hw.c │ │ │ ├── e1000_hw.h │ │ │ ├── e1000_main.c │ │ │ ├── e1000_osdep.h │ │ │ ├── e1000_param.c │ │ │ ├── kcompat.c │ │ │ ├── kcompat.h │ │ │ └── kcompat_ethtool.c │ └── e1000e-0.4.1.7-2010-02-25.polling.patch ├── elements │ ├── analysis │ │ ├── adjusttimestamp.cc │ │ ├── adjusttimestamp.hh │ │ ├── aggcounter.cc │ │ ├── aggcounter.hh │ │ ├── aggpktcounter.cc │ │ ├── aggpktcounter.hh │ │ ├── aggregatefilter.cc │ │ ├── aggregatefilter.hh │ │ ├── aggregatefirst.cc │ │ ├── aggregatefirst.hh │ │ ├── aggregateip.cc │ │ ├── aggregateip.hh │ │ ├── aggregateipaddrpair.cc │ │ ├── aggregateipaddrpair.hh │ │ ├── aggregateipflows.cc │ │ ├── aggregateipflows.hh │ │ ├── aggregatelast.cc │ │ ├── aggregatelast.hh │ │ ├── aggregatelen.cc │ │ ├── aggregatelen.hh │ │ ├── aggregatenotifier.cc │ │ ├── aggregatenotifier.hh │ │ ├── aggregatepaint.cc │ │ ├── aggregatepaint.hh │ │ ├── anonipaddr.cc │ │ ├── anonipaddr.hh │ │ ├── eraseippayload.cc │ │ ├── eraseippayload.hh │ │ ├── fromcapdump.cc │ │ ├── fromcapdump.hh │ │ ├── fromdagdump.cc │ │ ├── fromdagdump.hh │ │ ├── fromflandump.cc │ │ ├── fromflandump.hh │ │ ├── fromipsumdump.cc │ │ ├── fromipsumdump.hh │ │ ├── fromnetflowsumdump.cc │ │ ├── fromnetflowsumdump.hh │ │ ├── fromnlanrdump.cc │ │ ├── fromnlanrdump.hh │ │ ├── fromtcpdump.cc │ │ ├── fromtcpdump.hh │ │ ├── ipsumdump_anno.cc │ │ ├── ipsumdump_anno.hh │ │ ├── ipsumdump_icmp.cc │ │ ├── ipsumdump_icmp.hh │ │ ├── ipsumdump_ip.cc │ │ ├── ipsumdump_ip.hh │ │ ├── ipsumdump_link.cc │ │ ├── ipsumdump_link.hh │ │ ├── ipsumdump_payload.cc │ │ ├── ipsumdump_payload.hh │ │ ├── ipsumdump_tcp.cc │ │ ├── ipsumdump_tcp.hh │ │ ├── ipsumdump_udp.cc │ │ ├── ipsumdump_udp.hh │ │ ├── ipsumdumpinfo.cc │ │ ├── ipsumdumpinfo.hh │ │ ├── settimestampdelta.cc │ │ ├── settimestampdelta.hh │ │ ├── storetimestamp.cc │ │ ├── storetimestamp.hh │ │ ├── storeudptimeseqrecord.cc │ │ ├── storeudptimeseqrecord.hh │ │ ├── timefilter.cc │ │ ├── timefilter.hh │ │ ├── timerange.cc │ │ ├── timerange.hh │ │ ├── timesortedsched.cc │ │ ├── timesortedsched.hh │ │ ├── timestampaccum.cc │ │ ├── timestampaccum.hh │ │ ├── toipflowdumps.cc │ │ ├── toipflowdumps.hh │ │ ├── toipsumdump.cc │ │ └── toipsumdump.hh │ ├── app │ │ ├── ftpportmapper.cc │ │ └── ftpportmapper.hh │ ├── aqm │ │ ├── adaptivered.cc │ │ ├── adaptivered.hh │ │ ├── pi.cc │ │ ├── pi.hh │ │ ├── red.cc │ │ └── red.hh │ ├── bsdmodule │ │ ├── anydevice.cc │ │ ├── anydevice.hh │ │ ├── fastudpsrc.cc │ │ ├── fastudpsrc.hh │ │ ├── fromdevice.cc │ │ ├── fromdevice.hh │ │ ├── fromhost.cc │ │ ├── fromhost.hh │ │ ├── todevice.cc │ │ ├── todevice.hh │ │ ├── tohost.cc │ │ ├── tohost.hh │ │ ├── tohostsniffers.cc │ │ └── tohostsniffers.hh │ ├── ethernet │ │ ├── arpfaker.cc │ │ ├── arpfaker.hh │ │ ├── arpprint.cc │ │ ├── arpprint.hh │ │ ├── arpquerier.cc │ │ ├── arpquerier.hh │ │ ├── arpresponder.cc │ │ ├── arpresponder.hh │ │ ├── arptable.cc │ │ ├── arptable.hh │ │ ├── checkarpheader.cc │ │ ├── checkarpheader.hh │ │ ├── ensureether.cc │ │ ├── ensureether.hh │ │ ├── etherencap.cc │ │ ├── etherencap.hh │ │ ├── ethermirror.cc │ │ ├── ethermirror.hh │ │ ├── etherpausesource.cc │ │ ├── etherpausesource.hh │ │ ├── ethervlanannoencap.hh │ │ ├── ethervlanencap.cc │ │ ├── ethervlanencap.hh │ │ ├── hostetherfilter.cc │ │ ├── hostetherfilter.hh │ │ ├── ip6ndadvertiser.cc │ │ ├── ip6ndadvertiser.hh │ │ ├── ip6ndsolicitor.cc │ │ ├── ip6ndsolicitor.hh │ │ ├── setvlananno.cc │ │ ├── setvlananno.hh │ │ ├── storeetheraddress.cc │ │ ├── storeetheraddress.hh │ │ ├── stripetherheader.hh │ │ ├── stripethervlanheader.cc │ │ ├── stripethervlanheader.hh │ │ ├── vlandecap.cc │ │ ├── vlandecap.hh │ │ ├── vlanencap.cc │ │ └── vlanencap.hh │ ├── etherswitch │ │ ├── bridgemessage.cc │ │ ├── bridgemessage.hh │ │ ├── debugbridge.cc │ │ ├── debugbridge.hh │ │ ├── etherswitch.cc │ │ ├── etherswitch.hh │ │ ├── listenetherswitch.cc │ │ ├── listenetherswitch.hh │ │ ├── spantree.cc │ │ └── spantree.hh │ ├── grid │ │ ├── ackresponder.cc │ │ ├── ackresponder.hh │ │ ├── ackresponder2.cc │ │ ├── ackresponder2.hh │ │ ├── ackretrysender.cc │ │ ├── ackretrysender.hh │ │ ├── ackretrysender2.cc │ │ ├── ackretrysender2.hh │ │ ├── airoinfo.cc │ │ ├── airoinfo.hh │ │ ├── amoeba.cc │ │ ├── amoeba.hh │ │ ├── bottleneckmetric.cc │ │ ├── bottleneckmetric.hh │ │ ├── checkgridheader.cc │ │ ├── checkgridheader.hh │ │ ├── delivery_rate_table.hh │ │ ├── dsdvroutetable.cc │ │ ├── dsdvroutetable.hh │ │ ├── dsr.hh │ │ ├── dsrarptable.cc │ │ ├── dsrarptable.hh │ │ ├── dsrroutetable.cc │ │ ├── dsrroutetable.hh │ │ ├── e2elossmetric.cc │ │ ├── e2elossmetric.hh │ │ ├── etx2metric.cc │ │ ├── etx2metric.hh │ │ ├── etxmetric.cc │ │ ├── etxmetric.hh │ │ ├── filterbyhops.cc │ │ ├── filterbyhops.hh │ │ ├── filterbyrange.cc │ │ ├── filterbyrange.hh │ │ ├── fixdstloc.cc │ │ ├── fixdstloc.hh │ │ ├── fixsrcloc.cc │ │ ├── fixsrcloc.hh │ │ ├── floodinglocquerier.cc │ │ ├── floodinglocquerier.hh │ │ ├── grid.hh │ │ ├── gridencap.cc │ │ ├── gridencap.hh │ │ ├── gridgatewayinfo.cc │ │ ├── gridgatewayinfo.hh │ │ ├── gridgenericlocinfo.cc │ │ ├── gridgenericlocinfo.hh │ │ ├── gridgenericlogger.cc │ │ ├── gridgenericlogger.hh │ │ ├── gridgenericmetric.cc │ │ ├── gridgenericmetric.hh │ │ ├── gridgenericrt.hh │ │ ├── gridheaderinfo.cc │ │ ├── gridheaderinfo.hh │ │ ├── gridlocationinfo.cc │ │ ├── gridlocationinfo.hh │ │ ├── gridlocationinfo2.cc │ │ ├── gridlocationinfo2.hh │ │ ├── gridlogger.cc │ │ ├── gridlogger.hh │ │ ├── gridprobehandler.cc │ │ ├── gridprobehandler.hh │ │ ├── gridprobereplyreceiver.cc │ │ ├── gridprobereplyreceiver.hh │ │ ├── gridprobesender.cc │ │ ├── gridprobesender.hh │ │ ├── gridproxy.cc │ │ ├── gridproxy.hh │ │ ├── gridroutecb.hh │ │ ├── gridroutetable.cc │ │ ├── gridroutetable.hh │ │ ├── gridsrforwarder.cc │ │ ├── gridsrforwarder.hh │ │ ├── gridtxerror.cc │ │ ├── gridtxerror.hh │ │ ├── hello.cc │ │ ├── hello.hh │ │ ├── hopcountmetric.cc │ │ ├── hopcountmetric.hh │ │ ├── incseqno.cc │ │ ├── incseqno.hh │ │ ├── linkstat.cc │ │ ├── linkstat.hh │ │ ├── linktester.cc │ │ ├── linktester.hh │ │ ├── linktestreceiver.cc │ │ ├── linktestreceiver.hh │ │ ├── linktracker.cc │ │ ├── linktracker.hh │ │ ├── lirmetric.cc │ │ ├── lirmetric.hh │ │ ├── locfromfile.cc │ │ ├── locfromfile.hh │ │ ├── locqueryresponder.cc │ │ ├── locqueryresponder.hh │ │ ├── loctable.cc │ │ ├── loctable.hh │ │ ├── lookupgeogridroute.cc │ │ ├── lookupgeogridroute.hh │ │ ├── lookuplocalgridroute.cc │ │ ├── lookuplocalgridroute.hh │ │ ├── lookuplocalgridroute2.cc │ │ ├── lookuplocalgridroute2.hh │ │ ├── lrhello.cc │ │ ├── lrhello.hh │ │ ├── movesim.cc │ │ ├── movesim.hh │ │ ├── packetlogger.cc │ │ ├── packetlogger.hh │ │ ├── packetlogger2.cc │ │ ├── packetlogger2.hh │ │ ├── pep.cc │ │ ├── pep.hh │ │ ├── pep_proto.hh │ │ ├── pingpong.cc │ │ ├── pingpong.hh │ │ ├── printgrid.cc │ │ ├── printgrid.hh │ │ ├── qvec.hh │ │ ├── radiosim.cc │ │ ├── radiosim.hh │ │ ├── region.cc │ │ ├── region.hh │ │ ├── regionpep.cc │ │ ├── regionpep.hh │ │ ├── setgridchecksum.cc │ │ ├── setgridchecksum.hh │ │ ├── simplelocquerier.cc │ │ ├── simplelocquerier.hh │ │ ├── stripdsrheader.cc │ │ ├── stripdsrheader.hh │ │ ├── threshmetric.cc │ │ ├── threshmetric.hh │ │ ├── timeutils.hh │ │ ├── unstripdsrheader.cc │ │ ├── unstripdsrheader.hh │ │ ├── updateroutes.cc │ │ ├── updateroutes.hh │ │ ├── yarvismetric.cc │ │ └── yarvismetric.hh │ ├── icmp │ │ ├── checkicmpheader.cc │ │ ├── checkicmpheader.hh │ │ ├── icmperror.cc │ │ ├── icmperror.hh │ │ ├── icmpipencap.cc │ │ ├── icmpipencap.hh │ │ ├── icmppingencap.cc │ │ ├── icmppingencap.hh │ │ ├── icmppingresponder.cc │ │ ├── icmppingresponder.hh │ │ ├── icmppingrewriter.cc │ │ ├── icmppingrewriter.hh │ │ ├── icmprewriter.cc │ │ ├── icmprewriter.hh │ │ ├── icmpsendpings.cc │ │ └── icmpsendpings.hh │ ├── ip │ │ ├── checkipheader.cc │ │ ├── checkipheader.hh │ │ ├── checkipheader2.cc │ │ ├── checkipheader2.hh │ │ ├── decipttl.cc │ │ ├── decipttl.hh │ │ ├── directiplookup.cc │ │ ├── directiplookup.hh │ │ ├── fixipsrc.cc │ │ ├── fixipsrc.hh │ │ ├── getipaddress.cc │ │ ├── getipaddress.hh │ │ ├── ipaddrpairrewriter.cc │ │ ├── ipaddrpairrewriter.hh │ │ ├── ipaddrrewriter.cc │ │ ├── ipaddrrewriter.hh │ │ ├── ipclassifier.cc │ │ ├── ipclassifier.hh │ │ ├── ipencap.cc │ │ ├── ipencap.hh │ │ ├── ipfieldinfo.cc │ │ ├── ipfieldinfo.hh │ │ ├── ipfilter.cc │ │ ├── ipfilter.hh │ │ ├── ipfragmenter.cc │ │ ├── ipfragmenter.hh │ │ ├── ipfragmentmap.cc │ │ ├── ipfragmentmap.hh │ │ ├── ipgwoptions.cc │ │ ├── ipgwoptions.hh │ │ ├── ipinputcombo.cc │ │ ├── ipinputcombo.hh │ │ ├── ipmirror.cc │ │ ├── ipmirror.hh │ │ ├── ipnameinfo.cc │ │ ├── ipnameinfo.hh │ │ ├── ipoutputcombo.cc │ │ ├── ipoutputcombo.hh │ │ ├── ipprint.cc │ │ ├── ipprint.hh │ │ ├── ipratemon.cc │ │ ├── ipratemon.hh │ │ ├── ipreassembler.cc │ │ ├── ipreassembler.hh │ │ ├── iprewriterbase.cc │ │ ├── iprewriterbase.hh │ │ ├── iproutetable.cc │ │ ├── iproutetable.hh │ │ ├── iprwmapping.cc │ │ ├── iprwmapping.hh │ │ ├── iprwpattern.cc │ │ ├── iprwpattern.hh │ │ ├── iprwpatterns.cc │ │ ├── iprwpatterns.hh │ │ ├── lineariplookup.cc │ │ ├── lineariplookup.hh │ │ ├── lookupiproute.cc │ │ ├── lookupiproute.hh │ │ ├── lookupiproutelinux.cc │ │ ├── lookupiproutelinux.hh │ │ ├── lookupiproutemp.cc │ │ ├── lookupiproutemp.hh │ │ ├── markipce.cc │ │ ├── markipce.hh │ │ ├── markipheader.cc │ │ ├── markipheader.hh │ │ ├── poundradixiplookup.cc │ │ ├── poundradixiplookup.hh │ │ ├── radixiplookup.cc │ │ ├── radixiplookup.hh │ │ ├── rangeiplookup.cc │ │ ├── rangeiplookup.hh │ │ ├── rfc2507c.cc │ │ ├── rfc2507c.hh │ │ ├── rfc2507d.cc │ │ ├── rfc2507d.hh │ │ ├── ripsend.cc │ │ ├── ripsend.hh │ │ ├── rripmapper.cc │ │ ├── rripmapper.hh │ │ ├── setipaddress.cc │ │ ├── setipaddress.hh │ │ ├── setipchecksum.cc │ │ ├── setipchecksum.hh │ │ ├── setipdscp.cc │ │ ├── setipdscp.hh │ │ ├── setipecn.cc │ │ ├── setipecn.hh │ │ ├── setrandipaddress.cc │ │ ├── setrandipaddress.hh │ │ ├── siphmapper.cc │ │ ├── siphmapper.hh │ │ ├── sortediplookup.cc │ │ ├── sortediplookup.hh │ │ ├── storeipaddress.cc │ │ ├── storeipaddress.hh │ │ ├── stripipheader.cc │ │ ├── stripipheader.hh │ │ ├── truncateippayload.cc │ │ ├── truncateippayload.hh │ │ ├── unstripipheader.cc │ │ └── unstripipheader.hh │ ├── ip6 │ │ ├── addresstranslator.cc │ │ ├── addresstranslator.hh │ │ ├── checkip6header.cc │ │ ├── checkip6header.hh │ │ ├── decip6hlim.cc │ │ ├── decip6hlim.hh │ │ ├── getip6address.cc │ │ ├── getip6address.hh │ │ ├── icmp6error.cc │ │ ├── icmp6error.hh │ │ ├── ip6encap.cc │ │ ├── ip6encap.hh │ │ ├── ip6fragmenter.cc │ │ ├── ip6fragmenter.hh │ │ ├── ip6mirror.cc │ │ ├── ip6mirror.hh │ │ ├── ip6print.cc │ │ ├── ip6print.hh │ │ ├── ip6routetable.cc │ │ ├── ip6routetable.hh │ │ ├── lookupip6route.cc │ │ ├── lookupip6route.hh │ │ ├── markip6header.cc │ │ ├── markip6header.hh │ │ ├── protocoltranslator46.cc │ │ ├── protocoltranslator46.hh │ │ ├── protocoltranslator64.cc │ │ ├── protocoltranslator64.hh │ │ ├── setip6address.cc │ │ ├── setip6address.hh │ │ ├── setip6dscp.cc │ │ └── setip6dscp.hh │ ├── ipsec │ │ ├── README │ │ ├── aes.cc │ │ ├── aes.hh │ │ ├── des.cc │ │ ├── des.hh │ │ ├── desp.cc │ │ ├── desp.hh │ │ ├── esp.cc │ │ ├── esp.hh │ │ ├── hmac.cc │ │ ├── hmac.hh │ │ ├── hmacsha1.cc │ │ ├── hmacsha1.hh │ │ ├── ipsecencap.cc │ │ ├── ipsecencap.hh │ │ ├── ipsecroutetable.cc │ │ ├── ipsecroutetable.hh │ │ ├── radixipseclookup.cc │ │ ├── radixipseclookup.hh │ │ ├── sadatatuple.hh │ │ ├── satable.cc │ │ ├── satable.hh │ │ ├── sha1.cc │ │ ├── sha1.hh │ │ ├── sha1_impl.cc │ │ └── sha1_impl.hh │ ├── linuxmodule │ │ ├── anydevice.cc │ │ ├── anydevice.hh │ │ ├── cpuqueue.cc │ │ ├── cpuqueue.hh │ │ ├── cpuswitch.cc │ │ ├── cpuswitch.hh │ │ ├── cyclecountaccum.cc │ │ ├── cyclecountaccum.hh │ │ ├── fasttcpflows.cc │ │ ├── fasttcpflows.hh │ │ ├── fastudpflows.cc │ │ ├── fastudpflows.hh │ │ ├── fastudpsrc.cc │ │ ├── fastudpsrc.hh │ │ ├── fastudpsrcip6.cc │ │ ├── fastudpsrcip6.hh │ │ ├── fromdevice.cc │ │ ├── fromdevice.hh │ │ ├── fromhost.cc │ │ ├── fromhost.hh │ │ ├── fromuserdevice.cc │ │ ├── fromuserdevice.hh │ │ ├── perfcountaccum.cc │ │ ├── perfcountaccum.hh │ │ ├── perfcountinfo.cc │ │ ├── perfcountinfo.hh │ │ ├── perfcountuser.cc │ │ ├── perfcountuser.hh │ │ ├── polldevice.cc │ │ ├── polldevice.hh │ │ ├── rtcycles.cc │ │ ├── rtcycles.hh │ │ ├── schedulelinux.cc │ │ ├── schedulelinux.hh │ │ ├── setcyclecount.cc │ │ ├── setcyclecount.hh │ │ ├── setperfcount.cc │ │ ├── setperfcount.hh │ │ ├── threadmonitor.cc │ │ ├── threadmonitor.hh │ │ ├── todevice.cc │ │ ├── todevice.hh │ │ ├── tohost.cc │ │ ├── tohost.hh │ │ ├── tohostsniffers.cc │ │ ├── tohostsniffers.hh │ │ ├── touserdevice.cc │ │ └── touserdevice.hh │ ├── ns │ │ ├── fromsimdevice.cc │ │ ├── fromsimdevice.hh │ │ ├── simpacketanalyzer.cc │ │ ├── simpacketanalyzer.hh │ │ ├── tosimdevice.cc │ │ ├── tosimdevice.hh │ │ ├── tosimtrace.cc │ │ └── tosimtrace.hh │ ├── radio │ │ ├── b8b10.cc │ │ ├── b8b10.hh │ │ ├── bim-proto.hh │ │ ├── bim.cc │ │ ├── bim.hh │ │ ├── checkpattern.cc │ │ ├── checkpattern.hh │ │ ├── scramble.cc │ │ ├── scramble.hh │ │ ├── sendpattern.cc │ │ └── sendpattern.hh │ ├── simple │ │ ├── simpleidle.cc │ │ ├── simpleidle.hh │ │ ├── simplepriosched.cc │ │ ├── simplepriosched.hh │ │ ├── simplepullswitch.cc │ │ ├── simplepullswitch.hh │ │ ├── simplerrsched.cc │ │ └── simplerrsched.hh │ ├── standard │ │ ├── addressinfo.cc │ │ ├── align.cc │ │ ├── align.hh │ │ ├── alignmentinfo.cc │ │ ├── annotationinfo.cc │ │ ├── annotationinfo.hh │ │ ├── averagecounter.cc │ │ ├── averagecounter.hh │ │ ├── bandwidthmeter.cc │ │ ├── bandwidthmeter.hh │ │ ├── bandwidthshaper.cc │ │ ├── bandwidthshaper.hh │ │ ├── block.cc │ │ ├── block.hh │ │ ├── burster.cc │ │ ├── burster.hh │ │ ├── bwratedsplitter.cc │ │ ├── bwratedsplitter.hh │ │ ├── bwratedunqueue.cc │ │ ├── bwratedunqueue.hh │ │ ├── checkcrc32.cc │ │ ├── checkcrc32.hh │ │ ├── checklength.cc │ │ ├── checklength.hh │ │ ├── checkpaint.cc │ │ ├── checkpaint.hh │ │ ├── classification.cc │ │ ├── classification.hh │ │ ├── classifier.cc │ │ ├── classifier.hh │ │ ├── clickyinfo.cc │ │ ├── clickyinfo.hh │ │ ├── compblock.cc │ │ ├── compblock.hh │ │ ├── counter.cc │ │ ├── counter.hh │ │ ├── delayshaper.cc │ │ ├── delayshaper.hh │ │ ├── delayunqueue.cc │ │ ├── delayunqueue.hh │ │ ├── devirtualizeinfo.cc │ │ ├── devirtualizeinfo.hh │ │ ├── discard.cc │ │ ├── discard.hh │ │ ├── discardnofree.cc │ │ ├── discardnofree.hh │ │ ├── drivermanager.cc │ │ ├── drivermanager.hh │ │ ├── dropbroadcasts.cc │ │ ├── dropbroadcasts.hh │ │ ├── drr.cc │ │ ├── drr.hh │ │ ├── errorelement.cc │ │ ├── flowinfo.cc │ │ ├── flowinfo.hh │ │ ├── frontdropqueue.cc │ │ ├── frontdropqueue.hh │ │ ├── fullnotequeue.cc │ │ ├── fullnotequeue.hh │ │ ├── hashswitch.cc │ │ ├── hashswitch.hh │ │ ├── hub.cc │ │ ├── hub.hh │ │ ├── idle.cc │ │ ├── idle.hh │ │ ├── infinitesource.cc │ │ ├── infinitesource.hh │ │ ├── linkunqueue.cc │ │ ├── linkunqueue.hh │ │ ├── markmacheader.cc │ │ ├── markmacheader.hh │ │ ├── messageelement.cc │ │ ├── messageelement.hh │ │ ├── meter.cc │ │ ├── meter.hh │ │ ├── mixedqueue.cc │ │ ├── mixedqueue.hh │ │ ├── msqueue.cc │ │ ├── msqueue.hh │ │ ├── notifierqueue.cc │ │ ├── notifierqueue.hh │ │ ├── nullelement.cc │ │ ├── nullelement.hh │ │ ├── nulls.cc │ │ ├── nulls.hh │ │ ├── paint.cc │ │ ├── paint.hh │ │ ├── paintswitch.cc │ │ ├── paintswitch.hh │ │ ├── painttee.cc │ │ ├── painttee.hh │ │ ├── portinfo.cc │ │ ├── print.cc │ │ ├── print.hh │ │ ├── priosched.cc │ │ ├── priosched.hh │ │ ├── pullswitch.cc │ │ ├── pullswitch.hh │ │ ├── quicknotequeue.cc │ │ ├── quicknotequeue.hh │ │ ├── quitwatcher.cc │ │ ├── quitwatcher.hh │ │ ├── randomerror.cc │ │ ├── randomerror.hh │ │ ├── randomsample.cc │ │ ├── randomsample.hh │ │ ├── randomsource.cc │ │ ├── randomsource.hh │ │ ├── randomswitch.cc │ │ ├── randomswitch.hh │ │ ├── ratedsource.cc │ │ ├── ratedsource.hh │ │ ├── ratedsplitter.cc │ │ ├── ratedsplitter.hh │ │ ├── ratedunqueue.cc │ │ ├── ratedunqueue.hh │ │ ├── rrsched.cc │ │ ├── rrsched.hh │ │ ├── rrswitch.cc │ │ ├── rrswitch.hh │ │ ├── scheduleinfo.cc │ │ ├── script.cc │ │ ├── script.hh │ │ ├── setannobyte.cc │ │ ├── setannobyte.hh │ │ ├── setcrc32.cc │ │ ├── setcrc32.hh │ │ ├── setpackettype.cc │ │ ├── setpackettype.hh │ │ ├── settimestamp.cc │ │ ├── settimestamp.hh │ │ ├── shaper.cc │ │ ├── shaper.hh │ │ ├── simplequeue.cc │ │ ├── simplequeue.hh │ │ ├── staticpullswitch.cc │ │ ├── staticpullswitch.hh │ │ ├── staticswitch.cc │ │ ├── staticswitch.hh │ │ ├── storedata.cc │ │ ├── storedata.hh │ │ ├── stridesched.cc │ │ ├── stridesched.hh │ │ ├── strideswitch.cc │ │ ├── strideswitch.hh │ │ ├── strip.cc │ │ ├── strip.hh │ │ ├── striptonet.cc │ │ ├── striptonet.hh │ │ ├── suppressor.cc │ │ ├── suppressor.hh │ │ ├── switch.cc │ │ ├── switch.hh │ │ ├── tee.cc │ │ ├── tee.hh │ │ ├── threadsafequeue.cc │ │ ├── threadsafequeue.hh │ │ ├── timedsink.cc │ │ ├── timedsink.hh │ │ ├── timedsource.cc │ │ ├── timedsource.hh │ │ ├── timedunqueue.cc │ │ ├── timedunqueue.hh │ │ ├── truncate.cc │ │ ├── truncate.hh │ │ ├── unqueue.cc │ │ ├── unqueue.hh │ │ ├── unqueue2.cc │ │ ├── unqueue2.hh │ │ ├── unstrip.cc │ │ ├── unstrip.hh │ │ └── xiaxidinfo.cc │ ├── tcpudp │ │ ├── checktcpheader.cc │ │ ├── checktcpheader.hh │ │ ├── checkudpheader.cc │ │ ├── checkudpheader.hh │ │ ├── dynudpipencap.cc │ │ ├── dynudpipencap.hh │ │ ├── iprewriter.cc │ │ ├── iprewriter.hh │ │ ├── settcpchecksum.cc │ │ ├── settcpchecksum.hh │ │ ├── setudpchecksum.cc │ │ ├── setudpchecksum.hh │ │ ├── snooptcp.cc │ │ ├── snooptcp.hh │ │ ├── statelesstcpresp.cc │ │ ├── statelesstcpresp.hh │ │ ├── tcpfragmenter.cc │ │ ├── tcpfragmenter.hh │ │ ├── tcpipsend.cc │ │ ├── tcpipsend.hh │ │ ├── tcprewriter.cc │ │ ├── tcprewriter.hh │ │ ├── udpip6encap.cc │ │ ├── udpip6encap.hh │ │ ├── udpipencap.cc │ │ ├── udpipencap.hh │ │ ├── udprewriter.cc │ │ └── udprewriter.hh │ ├── test │ │ ├── bhmtest.cc │ │ ├── bhmtest.hh │ │ ├── biginttest.cc │ │ ├── biginttest.hh │ │ ├── blockthread.cc │ │ ├── blockthread.hh │ │ ├── checkpacket.cc │ │ ├── checkpacket.hh │ │ ├── clptest.cc │ │ ├── clptest.hh │ │ ├── comparepackets.cc │ │ ├── comparepackets.hh │ │ ├── confparsetest.cc │ │ ├── confparsetest.hh │ │ ├── cryptotest.cc │ │ ├── cryptotest.hh │ │ ├── errortest.cc │ │ ├── errortest.hh │ │ ├── functiontest.cc │ │ ├── functiontest.hh │ │ ├── handlertask.cc │ │ ├── handlertask.hh │ │ ├── hashtabletest.cc │ │ ├── hashtabletest.hh │ │ ├── heaptest.cc │ │ ├── heaptest.hh │ │ ├── listtest.cc │ │ ├── listtest.hh │ │ ├── neighborhoodtest.cc │ │ ├── neighborhoodtest.hh │ │ ├── notifierdebug.cc │ │ ├── notifierdebug.hh │ │ ├── nulltask.cc │ │ ├── nulltask.hh │ │ ├── packettest.cc │ │ ├── packettest.hh │ │ ├── queuethreadtest.cc │ │ ├── queuethreadtest.hh │ │ ├── queueyanktest.cc │ │ ├── queueyanktest.hh │ │ ├── randomseed.cc │ │ ├── randomseed.hh │ │ ├── schedordertest.cc │ │ ├── schedordertest.hh │ │ ├── sorttest.cc │ │ ├── sorttest.hh │ │ ├── timertest.cc │ │ ├── timertest.hh │ │ ├── tokenbuckettest.cc │ │ ├── tokenbuckettest.hh │ │ ├── upstreamnotifier.cc │ │ ├── upstreamnotifier.hh │ │ ├── vectortest.cc │ │ └── vectortest.hh │ ├── threads │ │ ├── balancedthreadsched.cc │ │ ├── balancedthreadsched.hh │ │ ├── spinlockacquire.cc │ │ ├── spinlockacquire.hh │ │ ├── spinlockinfo.cc │ │ ├── spinlockinfo.hh │ │ ├── spinlockrelease.cc │ │ ├── spinlockrelease.hh │ │ ├── staticthreadsched.cc │ │ └── staticthreadsched.hh │ ├── userlevel │ │ ├── changeuid.cc │ │ ├── changeuid.hh │ │ ├── chattersocket.cc │ │ ├── chattersocket.hh │ │ ├── controlsocket.cc │ │ ├── controlsocket.hh │ │ ├── fakepcap.cc │ │ ├── fakepcap.hh │ │ ├── fromdevice.cc │ │ ├── fromdevice.hh │ │ ├── fromdump.cc │ │ ├── fromdump.hh │ │ ├── fromhost.cc │ │ ├── fromhost.hh │ │ ├── fromrawsocket.cc │ │ ├── fromrawsocket.hh │ │ ├── fromsocket.cc │ │ ├── fromsocket.hh │ │ ├── handlerproxy.cc │ │ ├── handlerproxy.hh │ │ ├── ipflowrawsockets.cc │ │ ├── ipflowrawsockets.hh │ │ ├── kernelfilter.cc │ │ ├── kernelfilter.hh │ │ ├── kerneltap.cc │ │ ├── kerneltap.hh │ │ ├── kerneltun.cc │ │ ├── kerneltun.hh │ │ ├── khandlerproxy.cc │ │ ├── khandlerproxy.hh │ │ ├── printold.cc │ │ ├── printold.hh │ │ ├── progressbar.cc │ │ ├── progressbar.hh │ │ ├── rawsocket.cc │ │ ├── rawsocket.hh │ │ ├── socket.cc │ │ ├── socket.hh │ │ ├── todevice.cc │ │ ├── todevice.hh │ │ ├── todump.cc │ │ ├── todump.hh │ │ ├── tohost.cc │ │ ├── tohost.hh │ │ ├── torawsocket.cc │ │ ├── torawsocket.hh │ │ ├── tosocket.cc │ │ ├── tosocket.hh │ │ ├── umlswitch.cc │ │ └── umlswitch.hh │ ├── wifi │ │ ├── ap │ │ │ ├── associationresponder.cc │ │ │ ├── associationresponder.hh │ │ │ ├── beaconsource.cc │ │ │ ├── beaconsource.hh │ │ │ ├── openauthresponder.cc │ │ │ ├── openauthresponder.hh │ │ │ ├── proberesponder.cc │ │ │ ├── proberesponder.hh │ │ │ ├── stationtable.cc │ │ │ └── stationtable.hh │ │ ├── athdesc.h │ │ ├── athdescdecap.cc │ │ ├── athdescdecap.hh │ │ ├── athdescencap.cc │ │ ├── athdescencap.hh │ │ ├── autoratefallback.cc │ │ ├── autoratefallback.hh │ │ ├── availablerates.cc │ │ ├── availablerates.hh │ │ ├── bitrate.cc │ │ ├── bitrate.hh │ │ ├── ethercount.cc │ │ ├── ethercount.hh │ │ ├── extradecap.cc │ │ ├── extradecap.hh │ │ ├── extraencap.cc │ │ ├── extraencap.hh │ │ ├── filterfailures.cc │ │ ├── filterfailures.hh │ │ ├── filterphyerr.cc │ │ ├── filterphyerr.hh │ │ ├── filtertx.cc │ │ ├── filtertx.hh │ │ ├── fromhandler.cc │ │ ├── fromhandler.hh │ │ ├── linktable.cc │ │ ├── linktable.hh │ │ ├── madwifirate.cc │ │ ├── madwifirate.hh │ │ ├── packetstore.cc │ │ ├── packetstore.hh │ │ ├── path.hh │ │ ├── printtxfeedback.cc │ │ ├── printtxfeedback.hh │ │ ├── printwifi.cc │ │ ├── printwifi.hh │ │ ├── prism2decap.cc │ │ ├── prism2decap.hh │ │ ├── prism2encap.cc │ │ ├── prism2encap.hh │ │ ├── probetxrate.cc │ │ ├── probetxrate.hh │ │ ├── pushanno.cc │ │ ├── pushanno.hh │ │ ├── radiotapdecap.cc │ │ ├── radiotapdecap.hh │ │ ├── radiotapencap.cc │ │ ├── radiotapencap.hh │ │ ├── rc4.cc │ │ ├── rc4.hh │ │ ├── readanno.cc │ │ ├── readanno.hh │ │ ├── rxstats.cc │ │ ├── rxstats.hh │ │ ├── setrts.cc │ │ ├── setrts.hh │ │ ├── settxpower.cc │ │ ├── settxpower.hh │ │ ├── settxrate.cc │ │ ├── settxrate.hh │ │ ├── station │ │ │ ├── associationrequester.cc │ │ │ ├── associationrequester.hh │ │ │ ├── beaconscanner.cc │ │ │ ├── beaconscanner.hh │ │ │ ├── beacontracker.cc │ │ │ ├── beacontracker.hh │ │ │ ├── openauthrequester.cc │ │ │ ├── openauthrequester.hh │ │ │ ├── proberequester.cc │ │ │ └── proberequester.hh │ │ ├── wepdecap.cc │ │ ├── wepdecap.hh │ │ ├── wepencap.cc │ │ ├── wepencap.hh │ │ ├── wifidecap.cc │ │ ├── wifidecap.hh │ │ ├── wifidefrag.cc │ │ ├── wifidefrag.hh │ │ ├── wifidupefilter.cc │ │ ├── wifidupefilter.hh │ │ ├── wifiencap.cc │ │ ├── wifiencap.hh │ │ ├── wififragment.cc │ │ ├── wififragment.hh │ │ ├── wifiseq.cc │ │ ├── wifiseq.hh │ │ ├── wirelessinfo.cc │ │ └── wirelessinfo.hh │ └── xia │ │ ├── markxiaheader.cc │ │ ├── markxiaheader.hh │ │ ├── xarpquerier.cc │ │ ├── xarpquerier.hh │ │ ├── xarpresponder.cc │ │ ├── xarpresponder.hh │ │ ├── xarptable.cc │ │ ├── xarptable.hh │ │ ├── xcmp.cc │ │ ├── xcmp.hh │ │ ├── xiacache.cc │ │ ├── xiacache.hh │ │ ├── xiachallengeresponder.cc │ │ ├── xiachallengeresponder.hh │ │ ├── xiachallengesource.cc │ │ ├── xiachallengesource.hh │ │ ├── xiacheckdest.cc │ │ ├── xiacheckdest.hh │ │ ├── xiacontentmodule.cc │ │ ├── xiacontentmodule.hh │ │ ├── xiadechlim.cc │ │ ├── xiadechlim.hh │ │ ├── xiaipencap.cc │ │ ├── xiaipencap.hh │ │ ├── xianexthop.cc │ │ ├── xianexthop.hh │ │ ├── xiapaint.cc │ │ ├── xiapaint.hh │ │ ├── xiapaintswitch.cc │ │ ├── xiapaintswitch.hh │ │ ├── xiaprint.cc │ │ ├── xiaprint.hh │ │ ├── xiaselectpath.cc │ │ ├── xiaselectpath.hh │ │ ├── xiatransport.cc │ │ ├── xiatransport.hh │ │ ├── xiaxidroutetable.cc │ │ ├── xiaxidroutetable.hh │ │ ├── xiaxidtypeclassifier.cc │ │ ├── xiaxidtypeclassifier.hh │ │ ├── xiaxidtypecounter.cc │ │ ├── xiaxidtypecounter.hh │ │ ├── xlog.cc │ │ ├── xlog.hh │ │ ├── xtransport.cc │ │ └── xtransport.hh ├── etc │ ├── README │ ├── click.vim │ ├── debian-2.4.26-patch │ ├── diagrams │ │ ├── Makefile │ │ ├── README │ │ ├── elements.mp │ │ ├── elemfig.sty │ │ ├── samp01_examples.mp │ │ ├── samp02_processing.mp │ │ ├── samp03_routers.mp │ │ ├── samp04_iprouter.mp │ │ └── samp05_other.mp │ ├── elementmap.xsl │ ├── freebsd-4.3-patch │ ├── libclick │ │ ├── DISTFILES │ │ ├── Makefile.in │ │ ├── lc-Makefile.in │ │ ├── lc-configure.in │ │ └── lc-libsrc-Makefile.in │ ├── linux-2.4.18-patch │ ├── linux-2.4.20-patch │ ├── linux-2.4.20-wifi-patch │ ├── linux-2.4.21-patch │ ├── linux-2.4.26-patch │ ├── linux-2.4.32-patch │ ├── linux-2.6.16.13-patch │ ├── linux-2.6.19.2-patch │ ├── linux-2.6.24.7-patch │ ├── ns-2.30-patch │ ├── ns-2.34-patch │ ├── pkg-Makefile │ ├── pkg-bsdmodule.mk │ ├── pkg-config.mk.in │ ├── pkg-linuxmodule-26.mk │ ├── pkg-linuxmodule.mk │ ├── pkg-userlevel.mk │ ├── samplellrpc │ │ ├── Makefile │ │ ├── README │ │ └── click-readcounter.c │ └── samplepackage │ │ ├── Makefile.in │ │ ├── README │ │ ├── configure │ │ ├── configure.ac │ │ ├── sampleelt.cc │ │ ├── sampleelt.hh │ │ └── test.click ├── include │ ├── click │ │ ├── .gitignore │ │ ├── algorithm.hh │ │ ├── archive.hh │ │ ├── args.hh │ │ ├── atomic.hh │ │ ├── bighashmap.cc │ │ ├── bighashmap.hh │ │ ├── bighashmap_arena.hh │ │ ├── bigint.hh │ │ ├── bitvector.hh │ │ ├── clp.h │ │ ├── confparse.hh │ │ ├── crc32.h │ │ ├── cxxprotect.h │ │ ├── cxxunprotect.h │ │ ├── dequeue.cc │ │ ├── dequeue.hh │ │ ├── driver.hh │ │ ├── element.hh │ │ ├── elemfilter.hh │ │ ├── error-syslog.hh │ │ ├── error.hh │ │ ├── etheraddress.hh │ │ ├── ewma.hh │ │ ├── fixconfig.h │ │ ├── fromfile.hh │ │ ├── gaprate.hh │ │ ├── glue.hh │ │ ├── handler.hh │ │ ├── handlercall.hh │ │ ├── hashallocator.hh │ │ ├── hashcode.hh │ │ ├── hashcontainer.hh │ │ ├── hashmap.cc │ │ ├── hashmap.hh │ │ ├── hashtable.hh │ │ ├── heap.hh │ │ ├── ino.hh │ │ ├── integers.hh │ │ ├── ip6address.hh │ │ ├── ip6flowid.hh │ │ ├── ip6table.hh │ │ ├── ipaddress.hh │ │ ├── ipflowid.hh │ │ ├── iptable.hh │ │ ├── lexer.hh │ │ ├── list.hh │ │ ├── llrpc.h │ │ ├── master.hh │ │ ├── md5.h │ │ ├── nameinfo.hh │ │ ├── notifier.hh │ │ ├── package.hh │ │ ├── packet.hh │ │ ├── packet_anno.hh │ │ ├── pair.hh │ │ ├── perfctr-i586.hh │ │ ├── router.hh │ │ ├── routerthread.hh │ │ ├── routervisitor.hh │ │ ├── selectset.hh │ │ ├── simclick.h │ │ ├── skbmgr.hh │ │ ├── standard │ │ │ ├── addressinfo.hh │ │ │ ├── alignmentinfo.hh │ │ │ ├── errorelement.hh │ │ │ ├── portinfo.hh │ │ │ ├── scheduleinfo.hh │ │ │ ├── storage.hh │ │ │ ├── threadsched.hh │ │ │ └── xiaxidinfo.hh │ │ ├── straccum.hh │ │ ├── string.hh │ │ ├── sync.hh │ │ ├── task.hh │ │ ├── timer.hh │ │ ├── timerset.hh │ │ ├── timestamp.hh │ │ ├── tokenbucket.hh │ │ ├── type_traits.hh │ │ ├── userutils.hh │ │ ├── variableenv.hh │ │ ├── vector.cc │ │ ├── vector.hh │ │ ├── xiacontentheader.hh │ │ ├── xiaextheader.hh │ │ ├── xiaheader.hh │ │ ├── xiamerkletree.hh │ │ ├── xiapath.hh │ │ ├── xiasecurity.hh │ │ ├── xiatransportheader.hh │ │ ├── xiautil.hh │ │ ├── xid.hh │ │ ├── xidpair.hh │ │ └── zipf.h │ └── clicknet │ │ ├── dhcp.h │ │ ├── ether.h │ │ ├── fddi.h │ │ ├── icmp.h │ │ ├── icmp6.h │ │ ├── ip.h │ │ ├── ip6.h │ │ ├── llc.h │ │ ├── ppp.h │ │ ├── radiotap.h │ │ ├── rfc1483.h │ │ ├── tcp.h │ │ ├── udp.h │ │ ├── wifi.h │ │ └── xia.h ├── install-sh ├── installch ├── installch.in ├── lib │ ├── archive.cc │ ├── args.cc │ ├── atomic.cc │ ├── bighashmap_arena.cc │ ├── bitvector.cc │ ├── clp.c │ ├── confparse.cc │ ├── crc32.c │ ├── driver.cc │ ├── element.cc │ ├── elemfilter.cc │ ├── error-syslog.cc │ ├── error.cc │ ├── etheraddress.cc │ ├── exportstub.cc │ ├── fromfile.cc │ ├── gaprate.cc │ ├── glue.cc │ ├── handlercall.cc │ ├── hashallocator.cc │ ├── in_cksum.c │ ├── ino.cc │ ├── integers.cc │ ├── ip6address.cc │ ├── ip6flowid.cc │ ├── ip6table.cc │ ├── ipaddress.cc │ ├── ipflowid.cc │ ├── iptable.cc │ ├── lexer.cc │ ├── master.cc │ ├── md5.cc │ ├── nameinfo.cc │ ├── notifier.cc │ ├── packet.cc │ ├── router.cc │ ├── routerthread.cc │ ├── routervisitor.cc │ ├── selectset.cc │ ├── straccum.cc │ ├── strerror.c │ ├── string.cc │ ├── task.cc │ ├── templatei.cc │ ├── timer.cc │ ├── timerset.cc │ ├── timestamp.cc │ ├── userutils.cc │ ├── variableenv.cc │ ├── vectorv.cc │ ├── xiacontentheader.cc │ ├── xiaextheader.cc │ ├── xiaheader.cc │ ├── xiapath.cc │ ├── xiasecurity.cc │ ├── xiatransportheader.cc │ ├── xiautil.cc │ ├── xid.cc │ └── xidpair.cc ├── linuxmodule │ ├── .packet.o.d │ ├── Makefile.in │ ├── clickfs.cc │ ├── config.cc │ ├── fixincludes.pl │ ├── kernelversion.c │ ├── module.cc │ ├── moduleparm.h │ ├── modulepriv.hh │ ├── proclikefs.c │ ├── proclikefs.h │ ├── read-pmc.c │ ├── sched.cc │ └── skbmgr.cc ├── m4 │ └── click.m4 ├── missing ├── mkinstalldirs ├── ns │ ├── CUT_BinHeap.h │ ├── Makefile.in │ ├── nsclick-test.cc │ └── nsclick.cc ├── pathvars.h.in ├── performace-eval-modification ├── stamp-h ├── test │ ├── IPRewriter │ │ ├── FTPPortMapper-01.testie │ │ ├── ICMPPingRewriter-01.testie │ │ ├── ICMPPingRewriter-02.testie │ │ ├── IPAddrPairRewriter-01.testie │ │ ├── IPAddrPairRewriter-02.testie │ │ ├── IPAddrRewriter-01.testie │ │ ├── IPAddrRewriter-02.testie │ │ ├── IPAddrRewriter-03.testie │ │ ├── IPRewriter-01.testie │ │ ├── IPRewriter-02.testie │ │ ├── IPRewriter-03.testie │ │ ├── IPRewriter-04.testie │ │ ├── IPRewriter-09.testie │ │ ├── IPRewriter-10.testie │ │ ├── IPRewriter-11.testie │ │ ├── IPRewriter-12.testie │ │ ├── IPRewriter-15.testie │ │ ├── IPRewriter-16.testie │ │ ├── RoundRobinIPMapper-01.testie │ │ ├── TCPRewriter-01.testie │ │ ├── TCPRewriter-02.testie │ │ ├── TCPRewriter-03.testie │ │ ├── UDPRewriter-01.testie │ │ ├── UDPRewriter-02.testie │ │ ├── UDPRewriter-03.testie │ │ ├── UDPRewriter-04.testie │ │ ├── UDPRewriter-09.testie │ │ └── UDPRewriter-11.testie │ ├── analysis │ │ ├── AdjustTimestamp-01.testie │ │ ├── AggregateIPFlows-01.testie │ │ ├── FromIPSummaryDump-01.testie │ │ ├── FromIPSummaryDump-ipopt-01.testie │ │ ├── FromTcpdump-01.testie │ │ ├── FromTcpdump-02.testie │ │ ├── IPSummaryDump-01.testie │ │ ├── IPSummaryDump-02.testie │ │ ├── TimeFilter-01.testie │ │ ├── TimeSortedSched-01.testie │ │ └── TimeSortedSched-02.testie │ ├── compound │ │ ├── compact-01.testie │ │ ├── input-01.testie │ │ ├── overload-01.testie │ │ └── variables-01.testie │ ├── ethernet │ │ ├── ARPQuerier-01.testie │ │ ├── ARPQuerier-02.testie │ │ ├── ARPQuerier-03.testie │ │ ├── ARPQuerier-04.testie │ │ ├── ARPQuerier-05.testie │ │ ├── ARPQuerier-06.testie │ │ ├── ARPQuerier-07.testie │ │ ├── ARPResponder-01.testie │ │ ├── EtherEncap-01.testie │ │ └── EtherVLANEncap-01.testie │ ├── handlers │ │ ├── expansion-01.testie │ │ ├── handlercall-01.testie │ │ ├── kernel-01.testie │ │ └── privatehandler-01.testie │ ├── icmp │ │ ├── ICMPError-sourceroute-01.testie │ │ ├── ICMPIPEncap-01.testie │ │ ├── ICMPPingEncap-01.testie │ │ ├── ICMPRewriter-01.testie │ │ ├── ICMPRewriter-02.testie │ │ └── ICMPRewriter-03.testie │ ├── ip │ │ ├── AddressInfo-bcast-01.testie │ │ ├── IPFilter-01.testie │ │ ├── IPFilter-02.testie │ │ ├── IPFilter-03.testie │ │ ├── IPFilter-04.testie │ │ ├── IPFilter-05.testie │ │ ├── IPFilter-06.testie │ │ ├── IPPrint-01.testie │ │ ├── IPReassembler-01.testie │ │ ├── MarkIPCE-01.testie │ │ ├── SetIPDSCP-01.testie │ │ ├── StoreIPAddress-01.testie │ │ ├── iplookups-01.testie │ │ └── iplookups-02.testie │ ├── linuxmodule │ │ ├── ToHost-01.testie │ │ ├── ToHost-udpsocket-01.testie │ │ ├── clickfs-01.testie │ │ └── deviceup-01.testie │ ├── standard │ │ ├── BandwidthRatedUnqueue-01.testie │ │ ├── Classifier-01.testie │ │ ├── DelayShaper-notifier-01.testie │ │ ├── FullNoteQueue-upstream-notifier-01.testie │ │ ├── Hub-01.testie │ │ ├── Idle-01.testie │ │ ├── LinkUnqueue-01.testie │ │ ├── MixedQueue-01.testie │ │ ├── MixedQueue-02.testie │ │ ├── PullSwitch-01.testie │ │ ├── Queue-notifiers-01.testie │ │ ├── Queue-yank-01.testie │ │ ├── QuickNoteQueue-01.testie │ │ ├── RatedSplitter-01.testie │ │ ├── Script-01.testie │ │ ├── Script-02.testie │ │ ├── StrideSched-01.testie │ │ ├── Unqueue-01.testie │ │ ├── bigint-01.testie │ │ ├── confparse-01.testie │ │ ├── error-01.testie │ │ ├── functions-01.testie │ │ ├── hashtable-01.testie │ │ ├── heap-01.testie │ │ ├── landmarks-01.testie │ │ ├── library-01.testie │ │ ├── list-01.testie │ │ ├── neighborhood-01.testie │ │ ├── notifier-01.testie │ │ ├── notifier-02.testie │ │ ├── notifier-03.testie │ │ ├── notifier-04.testie │ │ ├── notifier-05.testie │ │ ├── sort-01.testie │ │ ├── timer-01.testie │ │ ├── timer-02.testie │ │ ├── tokenbucket-01.testie │ │ └── vector-01.testie │ ├── tcpudp │ │ └── UDPIPEncap-01.testie │ ├── testie │ ├── threads │ │ └── StaticThreadSched-01.testie │ ├── tools │ │ ├── align-01.testie │ │ ├── align-02.testie │ │ ├── align-03.testie │ │ ├── combine-01.testie │ │ ├── fastclassifier-01.testie │ │ ├── lexer-01.testie │ │ ├── lexer-02.testie │ │ ├── lexer-03.testie │ │ ├── lexer-04.testie │ │ ├── lexer-05.testie │ │ ├── lexer-06.testie │ │ ├── mkmindriver-01.testie │ │ ├── mkmindriver-02.testie │ │ ├── testie-01.testie │ │ ├── testie-02.testie │ │ ├── testie-03.testie │ │ ├── undead-01.testie │ │ └── xform-ip-01.testie │ └── userlevel │ │ ├── ControlSocket-llrpc-01.testie │ │ ├── ControlSocket-llrpc-02.testie │ │ ├── Script-signal-01.testie │ │ ├── Script-signal-02.testie │ │ ├── Script-signal-03.testie │ │ ├── clp-01.testie │ │ ├── iprouter-01.testie │ │ ├── timer-systime-01.testie │ │ ├── timewarp-01.testie │ │ └── uhotswap-01.testie ├── tools │ ├── Makefile.in │ ├── click-align │ │ ├── Makefile.in │ │ ├── alignclass.cc │ │ ├── alignclass.hh │ │ ├── alignment.cc │ │ ├── alignment.hh │ │ └── click-align.cc │ ├── click-check │ │ ├── Makefile.in │ │ └── click-check.cc │ ├── click-combine │ │ ├── Makefile.in │ │ ├── click-combine.cc │ │ └── click-uncombine.cc │ ├── click-devirtualize │ │ ├── Makefile.in │ │ ├── click-devirtualize.cc │ │ ├── cxxclass.cc │ │ ├── cxxclass.hh │ │ ├── signature.cc │ │ ├── signature.hh │ │ ├── specializer.cc │ │ └── specializer.hh │ ├── click-fastclassifier │ │ ├── Makefile.in │ │ ├── click-fastclassifier.cc │ │ ├── click-fastclassifier.hh │ │ ├── fc_classifier.cc │ │ └── fc_ipclassifier.cc │ ├── click-flatten │ │ ├── Makefile.in │ │ └── click-flatten.cc │ ├── click-install │ │ ├── Makefile.in │ │ ├── click-install.cc │ │ ├── click-uninstall.cc │ │ ├── common.cc │ │ └── common.hh │ ├── click-mkmindriver │ │ ├── Makefile.in │ │ └── click-mkmindriver.cc │ ├── click-pretty │ │ ├── Makefile.in │ │ ├── click-pretty.cc │ │ ├── html.cc │ │ └── html.hh │ ├── click-undead │ │ ├── Makefile.in │ │ └── click-undead.cc │ ├── click-viz │ ├── click-xform │ │ ├── Makefile.in │ │ ├── adjacency.cc │ │ ├── adjacency.hh │ │ └── click-xform.cc │ ├── click2xml │ │ ├── Makefile.in │ │ ├── click2xml.cc │ │ ├── clickconfig.dtd │ │ ├── xml2click.cc │ │ └── xml2click.hh │ └── lib │ │ ├── Makefile.in │ │ ├── eclasst.cc │ │ ├── eclasst.hh │ │ ├── elementmap.cc │ │ ├── elementmap.hh │ │ ├── elementt.cc │ │ ├── elementt.hh │ │ ├── etraits.cc │ │ ├── etraits.hh │ │ ├── landmarkt.cc │ │ ├── landmarkt.hh │ │ ├── lexert.cc │ │ ├── lexert.hh │ │ ├── lexertinfo.cc │ │ ├── lexertinfo.hh │ │ ├── processingt.cc │ │ ├── processingt.hh │ │ ├── routert.cc │ │ ├── routert.hh │ │ ├── runparse.cc │ │ ├── runparse.hh │ │ ├── toolutils.cc │ │ ├── toolutils.hh │ │ └── vectori.cc └── userlevel │ ├── Makefile.in │ ├── click.cc │ └── xia.proto ├── configure ├── daemons ├── Makefile ├── common │ ├── XIARouter.cc │ ├── XIARouter.hh │ ├── csclient.cc │ └── csclient.hh ├── nameserver │ ├── Makefile │ └── ns.cc ├── rendezvous │ ├── Makefile │ └── rvd.cc ├── visualizer │ ├── statsserver │ └── xstats ├── xhcp │ ├── Makefile │ ├── README │ ├── xhcp.hh │ ├── xhcp_client.cc │ └── xhcp_server.cc └── xrouted │ ├── Makefile │ ├── README │ ├── xrouted.cc │ └── xrouted.hh ├── etc ├── .gitignore ├── click │ ├── .gitignore │ ├── templates │ │ ├── dual_stack_host.click.template │ │ ├── dual_stack_router.click.template │ │ ├── host.click.template │ │ ├── router.click.template │ │ └── xia_address.click.template │ ├── xia_constants.click │ ├── xia_large_topology.click │ ├── xia_local_topology.click │ └── xia_router_lib.click ├── hosts.xia.example ├── log │ ├── README │ ├── logrotate.d │ │ └── xia │ └── rsyslog.d │ │ └── 40-xia.conf ├── sidmap.conf.example └── xids.example ├── experiments ├── DNS │ ├── README │ ├── Register │ │ ├── Makefile │ │ ├── README │ │ ├── XregisterName.c │ │ ├── XregisterName.h │ │ ├── test.c │ │ └── xsockconf.ini │ ├── XIAResolver │ │ ├── Makefile │ │ ├── README │ │ ├── XgetDAGbyname.c │ │ ├── XgetDAGbyname.h │ │ ├── old │ │ │ ├── getxiadstdagbyname.c │ │ │ ├── getxiadstdagbyname.h │ │ │ └── xiadns.c │ │ ├── python_wrapper │ │ │ └── getxipinfo.py │ │ ├── test.c │ │ └── xsockconf.ini │ ├── bind-9.8.1 │ │ ├── Atffile │ │ ├── CHANGES │ │ ├── COPYRIGHT │ │ ├── FAQ │ │ ├── FAQ.xml │ │ ├── HISTORY │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── RELEASE-NOTES-BIND-9.8.1.html │ │ ├── RELEASE-NOTES-BIND-9.8.1.pdf │ │ ├── RELEASE-NOTES-BIND-9.8.1.txt │ │ ├── acconfig.h │ │ ├── aclocal.m4 │ │ ├── bin │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── check │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── check-tool.c │ │ │ │ ├── check-tool.h │ │ │ │ ├── named-checkconf.8 │ │ │ │ ├── named-checkconf.c │ │ │ │ ├── named-checkconf.docbook │ │ │ │ ├── named-checkconf.html │ │ │ │ ├── named-checkzone.8 │ │ │ │ ├── named-checkzone.c │ │ │ │ ├── named-checkzone.docbook │ │ │ │ ├── named-checkzone.html │ │ │ │ └── win32 │ │ │ │ │ ├── checktool.dsp │ │ │ │ │ ├── checktool.dsw │ │ │ │ │ ├── namedcheckconf.dsp │ │ │ │ │ ├── namedcheckconf.dsw │ │ │ │ │ ├── namedcheckconf.mak │ │ │ │ │ ├── namedcheckzone.dsp │ │ │ │ │ ├── namedcheckzone.dsw │ │ │ │ │ └── namedcheckzone.mak │ │ │ ├── confgen │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── ddns-confgen.8 │ │ │ │ ├── ddns-confgen.c │ │ │ │ ├── ddns-confgen.docbook │ │ │ │ ├── ddns-confgen.html │ │ │ │ ├── include │ │ │ │ │ └── confgen │ │ │ │ │ │ └── os.h │ │ │ │ ├── keygen.c │ │ │ │ ├── keygen.h │ │ │ │ ├── rndc-confgen.8 │ │ │ │ ├── rndc-confgen.c │ │ │ │ ├── rndc-confgen.docbook │ │ │ │ ├── rndc-confgen.html │ │ │ │ ├── unix │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── os.c │ │ │ │ ├── util.c │ │ │ │ ├── util.h │ │ │ │ └── win32 │ │ │ │ │ ├── confgentool.dsp │ │ │ │ │ ├── confgentool.dsw │ │ │ │ │ ├── ddnsconfgen.dsp │ │ │ │ │ ├── ddnsconfgen.dsw │ │ │ │ │ ├── ddnsconfgen.mak │ │ │ │ │ ├── os.c │ │ │ │ │ ├── rndcconfgen.dsp │ │ │ │ │ ├── rndcconfgen.dsw │ │ │ │ │ └── rndcconfgen.mak │ │ │ ├── dig │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dig.1 │ │ │ │ ├── dig.c │ │ │ │ ├── dig.docbook │ │ │ │ ├── dig.html │ │ │ │ ├── dighost.c │ │ │ │ ├── host.1 │ │ │ │ ├── host.c │ │ │ │ ├── host.docbook │ │ │ │ ├── host.html │ │ │ │ ├── include │ │ │ │ │ └── dig │ │ │ │ │ │ └── dig.h │ │ │ │ ├── nslookup.1 │ │ │ │ ├── nslookup.c │ │ │ │ ├── nslookup.docbook │ │ │ │ ├── nslookup.html │ │ │ │ └── win32 │ │ │ │ │ ├── dig.dsp │ │ │ │ │ ├── dig.dsw │ │ │ │ │ ├── dig.mak │ │ │ │ │ ├── dighost.dsp │ │ │ │ │ ├── dighost.dsw │ │ │ │ │ ├── host.dsp │ │ │ │ │ ├── host.dsw │ │ │ │ │ ├── host.mak │ │ │ │ │ ├── nslookup.dsp │ │ │ │ │ ├── nslookup.dsw │ │ │ │ │ └── nslookup.mak │ │ │ ├── dnssec │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dnssec-dsfromkey.8 │ │ │ │ ├── dnssec-dsfromkey.c │ │ │ │ ├── dnssec-dsfromkey.docbook │ │ │ │ ├── dnssec-dsfromkey.html │ │ │ │ ├── dnssec-keyfromlabel.8 │ │ │ │ ├── dnssec-keyfromlabel.c │ │ │ │ ├── dnssec-keyfromlabel.docbook │ │ │ │ ├── dnssec-keyfromlabel.html │ │ │ │ ├── dnssec-keygen.8 │ │ │ │ ├── dnssec-keygen.c │ │ │ │ ├── dnssec-keygen.docbook │ │ │ │ ├── dnssec-keygen.html │ │ │ │ ├── dnssec-revoke.8 │ │ │ │ ├── dnssec-revoke.c │ │ │ │ ├── dnssec-revoke.docbook │ │ │ │ ├── dnssec-revoke.html │ │ │ │ ├── dnssec-settime.8 │ │ │ │ ├── dnssec-settime.c │ │ │ │ ├── dnssec-settime.docbook │ │ │ │ ├── dnssec-settime.html │ │ │ │ ├── dnssec-signzone.8 │ │ │ │ ├── dnssec-signzone.c │ │ │ │ ├── dnssec-signzone.docbook │ │ │ │ ├── dnssec-signzone.html │ │ │ │ ├── dnssectool.c │ │ │ │ ├── dnssectool.h │ │ │ │ └── win32 │ │ │ │ │ ├── dnssectool.dsp │ │ │ │ │ ├── dnssectool.dsw │ │ │ │ │ ├── dsfromkey.dsp │ │ │ │ │ ├── dsfromkey.dsw │ │ │ │ │ ├── dsfromkey.mak │ │ │ │ │ ├── keyfromlabel.dsp │ │ │ │ │ ├── keyfromlabel.dsw │ │ │ │ │ ├── keyfromlabel.mak │ │ │ │ │ ├── keygen.dsp │ │ │ │ │ ├── keygen.dsw │ │ │ │ │ ├── keygen.mak │ │ │ │ │ ├── nsupdate.dsp │ │ │ │ │ ├── nsupdate.dsw │ │ │ │ │ ├── revoke.dsp │ │ │ │ │ ├── revoke.dsw │ │ │ │ │ ├── revoke.mak │ │ │ │ │ ├── settime.dsp │ │ │ │ │ ├── settime.dsw │ │ │ │ │ ├── settime.mak │ │ │ │ │ ├── signzone.dsp │ │ │ │ │ ├── signzone.dsw │ │ │ │ │ └── signzone.mak │ │ │ ├── named │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── bind.keys.h │ │ │ │ ├── bind9.xsl │ │ │ │ ├── bind9.xsl.h │ │ │ │ ├── bindkeys.pl │ │ │ │ ├── builtin.c │ │ │ │ ├── client.c │ │ │ │ ├── config.c │ │ │ │ ├── control.c │ │ │ │ ├── controlconf.c │ │ │ │ ├── convertxsl.pl │ │ │ │ ├── include │ │ │ │ │ ├── dlz │ │ │ │ │ │ └── dlz_dlopen_driver.h │ │ │ │ │ └── named │ │ │ │ │ │ ├── builtin.h │ │ │ │ │ │ ├── client.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── control.h │ │ │ │ │ │ ├── globals.h │ │ │ │ │ │ ├── interfacemgr.h │ │ │ │ │ │ ├── listenlist.h │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ ├── logconf.h │ │ │ │ │ │ ├── lwaddr.h │ │ │ │ │ │ ├── lwdclient.h │ │ │ │ │ │ ├── lwresd.h │ │ │ │ │ │ ├── lwsearch.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── notify.h │ │ │ │ │ │ ├── ns_smf_globals.h │ │ │ │ │ │ ├── query.h │ │ │ │ │ │ ├── server.h │ │ │ │ │ │ ├── sortlist.h │ │ │ │ │ │ ├── statschannel.h │ │ │ │ │ │ ├── tkeyconf.h │ │ │ │ │ │ ├── tsigconf.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── update.h │ │ │ │ │ │ ├── xfrout.h │ │ │ │ │ │ └── zoneconf.h │ │ │ │ ├── interfacemgr.c │ │ │ │ ├── listenlist.c │ │ │ │ ├── log.c │ │ │ │ ├── logconf.c │ │ │ │ ├── lwaddr.c │ │ │ │ ├── lwdclient.c │ │ │ │ ├── lwderror.c │ │ │ │ ├── lwdgabn.c │ │ │ │ ├── lwdgnba.c │ │ │ │ ├── lwdgrbn.c │ │ │ │ ├── lwdnoop.c │ │ │ │ ├── lwresd.8 │ │ │ │ ├── lwresd.c │ │ │ │ ├── lwresd.docbook │ │ │ │ ├── lwresd.html │ │ │ │ ├── lwsearch.c │ │ │ │ ├── main.c │ │ │ │ ├── named.8 │ │ │ │ ├── named.conf.5 │ │ │ │ ├── named.conf.docbook │ │ │ │ ├── named.conf.html │ │ │ │ ├── named.docbook │ │ │ │ ├── named.html │ │ │ │ ├── notify.c │ │ │ │ ├── query.c │ │ │ │ ├── server.c │ │ │ │ ├── sortlist.c │ │ │ │ ├── statschannel.c │ │ │ │ ├── tkeyconf.c │ │ │ │ ├── tsigconf.c │ │ │ │ ├── unix │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dlz_dlopen_driver.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── named │ │ │ │ │ │ │ └── os.h │ │ │ │ │ └── os.c │ │ │ │ ├── update.c │ │ │ │ ├── win32 │ │ │ │ │ ├── dlz_dlopen_driver.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── named │ │ │ │ │ │ │ ├── ntservice.h │ │ │ │ │ │ │ └── os.h │ │ │ │ │ ├── named.dsp │ │ │ │ │ ├── named.dsw │ │ │ │ │ ├── named.mak │ │ │ │ │ ├── ntservice.c │ │ │ │ │ └── os.c │ │ │ │ ├── xfrout.c │ │ │ │ └── zoneconf.c │ │ │ ├── nsupdate │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── nsupdate.1 │ │ │ │ ├── nsupdate.c │ │ │ │ ├── nsupdate.docbook │ │ │ │ ├── nsupdate.html │ │ │ │ ├── win32 │ │ │ │ │ ├── nsupdate.dsp │ │ │ │ │ ├── nsupdate.dsw │ │ │ │ │ └── nsupdate.mak │ │ │ │ └── xsockconf.ini │ │ │ ├── pkcs11 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── OLD-PKCS11-NOTES │ │ │ │ ├── include │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ ├── pkcs11f.h │ │ │ │ │ └── pkcs11t.h │ │ │ │ ├── openssl-0.9.8l-patch │ │ │ │ ├── pkcs11-destroy.8 │ │ │ │ ├── pkcs11-destroy.c │ │ │ │ ├── pkcs11-destroy.docbook │ │ │ │ ├── pkcs11-destroy.html │ │ │ │ ├── pkcs11-keygen.8 │ │ │ │ ├── pkcs11-keygen.c │ │ │ │ ├── pkcs11-keygen.docbook │ │ │ │ ├── pkcs11-keygen.html │ │ │ │ ├── pkcs11-list.8 │ │ │ │ ├── pkcs11-list.c │ │ │ │ ├── pkcs11-list.docbook │ │ │ │ ├── pkcs11-list.html │ │ │ │ ├── unix │ │ │ │ │ ├── cryptoki.h │ │ │ │ │ └── unix.c │ │ │ │ └── win32 │ │ │ │ │ ├── cryptoki.h │ │ │ │ │ ├── pk11destroy.dsp │ │ │ │ │ ├── pk11destroy.dsw │ │ │ │ │ ├── pk11destroy.mak │ │ │ │ │ ├── pk11keygen.dsp │ │ │ │ │ ├── pk11keygen.dsw │ │ │ │ │ ├── pk11keygen.mak │ │ │ │ │ ├── pk11list.dsp │ │ │ │ │ ├── pk11list.dsw │ │ │ │ │ ├── pk11list.mak │ │ │ │ │ └── win32.c │ │ │ ├── rndc │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── include │ │ │ │ │ └── rndc │ │ │ │ │ │ └── os.h │ │ │ │ ├── rndc.8 │ │ │ │ ├── rndc.c │ │ │ │ ├── rndc.conf │ │ │ │ ├── rndc.conf.5 │ │ │ │ ├── rndc.conf.docbook │ │ │ │ ├── rndc.conf.html │ │ │ │ ├── rndc.docbook │ │ │ │ ├── rndc.html │ │ │ │ ├── util.c │ │ │ │ ├── util.h │ │ │ │ └── win32 │ │ │ │ │ ├── rndc.dsp │ │ │ │ │ ├── rndc.dsw │ │ │ │ │ ├── rndc.mak │ │ │ │ │ ├── rndcutil.dsp │ │ │ │ │ └── rndcutil.dsw │ │ │ ├── tests │ │ │ │ ├── Kchild.example.+003+04017.key │ │ │ │ ├── Kchild.example.+003+04017.private │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── adb_test.c │ │ │ │ ├── atomic │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── t_atomic.c │ │ │ │ ├── b8t.mk │ │ │ │ ├── b9t.mk │ │ │ │ ├── backtrace_test.c │ │ │ │ ├── byaddr_test.c │ │ │ │ ├── byname_test.c │ │ │ │ ├── cfg_test.c │ │ │ │ ├── compress_test.c │ │ │ │ ├── db │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dns_db_class_1.data │ │ │ │ │ ├── dns_db_class_data │ │ │ │ │ ├── dns_db_closeversion_1.data │ │ │ │ │ ├── dns_db_closeversion_1_data │ │ │ │ │ ├── dns_db_closeversion_2.data │ │ │ │ │ ├── dns_db_closeversion_2_data │ │ │ │ │ ├── dns_db_currentversion.data │ │ │ │ │ ├── dns_db_currentversion_data │ │ │ │ │ ├── dns_db_expirenode.data │ │ │ │ │ ├── dns_db_expirenode_data │ │ │ │ │ ├── dns_db_find_1.data │ │ │ │ │ ├── dns_db_find_10.data │ │ │ │ │ ├── dns_db_find_10_data │ │ │ │ │ ├── dns_db_find_1_data │ │ │ │ │ ├── dns_db_find_2.data │ │ │ │ │ ├── dns_db_find_2_data │ │ │ │ │ ├── dns_db_find_3.data │ │ │ │ │ ├── dns_db_find_3_data │ │ │ │ │ ├── dns_db_find_4.data │ │ │ │ │ ├── dns_db_find_4_data │ │ │ │ │ ├── dns_db_find_5.data │ │ │ │ │ ├── dns_db_find_5_data │ │ │ │ │ ├── dns_db_find_6.data │ │ │ │ │ ├── dns_db_find_6_data │ │ │ │ │ ├── dns_db_find_7.data │ │ │ │ │ ├── dns_db_find_7_data │ │ │ │ │ ├── dns_db_find_8.data │ │ │ │ │ ├── dns_db_find_8_data │ │ │ │ │ ├── dns_db_find_9.data │ │ │ │ │ ├── dns_db_find_9_data │ │ │ │ │ ├── dns_db_findnode_1.data │ │ │ │ │ ├── dns_db_findnode_1_data │ │ │ │ │ ├── dns_db_findnode_2.data │ │ │ │ │ ├── dns_db_findnode_2_data │ │ │ │ │ ├── dns_db_iscache_1.data │ │ │ │ │ ├── dns_db_iscache_1_data │ │ │ │ │ ├── dns_db_iscache_2.data │ │ │ │ │ ├── dns_db_iscache_2_data │ │ │ │ │ ├── dns_db_iszone_1.data │ │ │ │ │ ├── dns_db_iszone_1_data │ │ │ │ │ ├── dns_db_iszone_2.data │ │ │ │ │ ├── dns_db_iszone_2_data │ │ │ │ │ ├── dns_db_load_1.data │ │ │ │ │ ├── dns_db_load_25.data │ │ │ │ │ ├── dns_db_load_data │ │ │ │ │ ├── dns_db_load_soa_not_top │ │ │ │ │ ├── dns_db_newversion.data │ │ │ │ │ ├── dns_db_newversion_data │ │ │ │ │ ├── dns_db_origin_1.data │ │ │ │ │ ├── dns_db_origin_data │ │ │ │ │ └── t_db.c │ │ │ │ ├── db_test.c │ │ │ │ ├── dnssec-signzone │ │ │ │ │ ├── Kexample.com.+005+07065.key │ │ │ │ │ ├── Kexample.com.+005+07065.private │ │ │ │ │ ├── Kexample.com.+005+23362.key │ │ │ │ │ ├── Kexample.com.+005+23362.private │ │ │ │ │ ├── bogus-ksk.key │ │ │ │ │ ├── bogus-zsk.key │ │ │ │ │ ├── run-test.sh │ │ │ │ │ ├── test1.zone │ │ │ │ │ ├── test2.zone │ │ │ │ │ ├── test3.zone │ │ │ │ │ ├── test4.zone │ │ │ │ │ ├── test5.zone │ │ │ │ │ ├── test6.zone │ │ │ │ │ ├── test7.zone │ │ │ │ │ └── test8.zone │ │ │ │ ├── dst │ │ │ │ │ ├── Kdh.+002+18602.key │ │ │ │ │ ├── Kdh.+002+18602.private │ │ │ │ │ ├── Kdh.+002+48957.key │ │ │ │ │ ├── Kdh.+002+48957.private │ │ │ │ │ ├── Ktest.+001+00002.key │ │ │ │ │ ├── Ktest.+001+54622.key │ │ │ │ │ ├── Ktest.+001+54622.private │ │ │ │ │ ├── Ktest.+003+23616.key │ │ │ │ │ ├── Ktest.+003+23616.private │ │ │ │ │ ├── Ktest.+003+49667.key │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dst_2_data │ │ │ │ │ ├── dst_test.c │ │ │ │ │ ├── gsstest.c │ │ │ │ │ ├── t2_data_1 │ │ │ │ │ ├── t2_data_2 │ │ │ │ │ ├── t2_dsasig │ │ │ │ │ ├── t2_rsasig │ │ │ │ │ └── t_dst.c │ │ │ │ ├── entropy2_test.c │ │ │ │ ├── entropy_test.c │ │ │ │ ├── fsaccess_test.c │ │ │ │ ├── gxba_test.c │ │ │ │ ├── gxbn_test.c │ │ │ │ ├── hash_test.c │ │ │ │ ├── hashes │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── t_hashes.c │ │ │ │ ├── headerdep_test.sh │ │ │ │ ├── headerdep_test.sh.in │ │ │ │ ├── inter_test.c │ │ │ │ ├── keyboard_test.c │ │ │ │ ├── lex_test.c │ │ │ │ ├── lfsr_test.c │ │ │ │ ├── log_test.c │ │ │ │ ├── lwres_test.c │ │ │ │ ├── lwresconf_test.c │ │ │ │ ├── master │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dns_master_load_10_data │ │ │ │ │ ├── dns_master_load_11_data │ │ │ │ │ ├── dns_master_load_1_data │ │ │ │ │ ├── dns_master_load_2_data │ │ │ │ │ ├── dns_master_load_3_data │ │ │ │ │ ├── dns_master_load_4_data │ │ │ │ │ ├── dns_master_load_5_data │ │ │ │ │ ├── dns_master_load_6_data │ │ │ │ │ ├── dns_master_load_7_data │ │ │ │ │ ├── dns_master_load_8_data │ │ │ │ │ ├── dns_master_load_9_data │ │ │ │ │ ├── master1.data │ │ │ │ │ ├── master10.data │ │ │ │ │ ├── master11.data │ │ │ │ │ ├── master2.data │ │ │ │ │ ├── master3.data │ │ │ │ │ ├── master4.data │ │ │ │ │ ├── master5.data │ │ │ │ │ ├── master6.data │ │ │ │ │ ├── master7.data │ │ │ │ │ ├── master8.data │ │ │ │ │ ├── master9.data │ │ │ │ │ └── t_master.c │ │ │ │ ├── master_test.c │ │ │ │ ├── mem │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── t_mem.c │ │ │ │ ├── mempool_test.c │ │ │ │ ├── name_test.c │ │ │ │ ├── named.conf │ │ │ │ ├── names │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dns_name_compare_data │ │ │ │ │ ├── dns_name_countlabels_data │ │ │ │ │ ├── dns_name_fromregion_data │ │ │ │ │ ├── dns_name_fromtext_data │ │ │ │ │ ├── dns_name_fromwire_1_data │ │ │ │ │ ├── dns_name_fromwire_2_data │ │ │ │ │ ├── dns_name_fromwire_3_data │ │ │ │ │ ├── dns_name_fromwire_4_data │ │ │ │ │ ├── dns_name_fromwire_5_data │ │ │ │ │ ├── dns_name_fromwire_6_data │ │ │ │ │ ├── dns_name_fromwire_7_data │ │ │ │ │ ├── dns_name_fromwire_8_data │ │ │ │ │ ├── dns_name_fullcompare_data │ │ │ │ │ ├── dns_name_getlabel_data │ │ │ │ │ ├── dns_name_getlabelsequence_data │ │ │ │ │ ├── dns_name_hash_data │ │ │ │ │ ├── dns_name_isabsolute_data │ │ │ │ │ ├── dns_name_issubdomain_data │ │ │ │ │ ├── dns_name_rdatacompare_data │ │ │ │ │ ├── dns_name_toregion_data │ │ │ │ │ ├── dns_name_totext_data │ │ │ │ │ ├── dns_name_towire_1_data │ │ │ │ │ ├── dns_name_towire_2_data │ │ │ │ │ ├── t_names.c │ │ │ │ │ ├── wire_test1.data │ │ │ │ │ ├── wire_test2.data │ │ │ │ │ ├── wire_test3_1.data │ │ │ │ │ ├── wire_test3_2.data │ │ │ │ │ ├── wire_test4.data │ │ │ │ │ ├── wire_test5.data │ │ │ │ │ ├── wire_test6.data │ │ │ │ │ ├── wire_test7.data │ │ │ │ │ └── wire_test8.data │ │ │ │ ├── ndc.conf │ │ │ │ ├── ndc.conf-include │ │ │ │ ├── net │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── driver.c │ │ │ │ │ ├── driver.h │ │ │ │ │ ├── netaddr_multicast.c │ │ │ │ │ ├── sockaddr_multicast.c │ │ │ │ │ └── testsuite.h │ │ │ │ ├── nsecify.c │ │ │ │ ├── printmsg.c │ │ │ │ ├── printmsg.h │ │ │ │ ├── ratelimiter_test.c │ │ │ │ ├── rbt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dns_rbt.data │ │ │ │ │ ├── dns_rbt_addname_1_data │ │ │ │ │ ├── dns_rbt_addname_2_data │ │ │ │ │ ├── dns_rbt_bitstring.data │ │ │ │ │ ├── dns_rbt_create_1_data │ │ │ │ │ ├── dns_rbt_deletename_1_data │ │ │ │ │ ├── dns_rbt_deletename_2_data │ │ │ │ │ ├── dns_rbt_findname_1_data │ │ │ │ │ ├── dns_rbt_findname_2_data │ │ │ │ │ ├── dns_rbt_findname_3_data │ │ │ │ │ ├── dns_rbtnodechain_first_1.data │ │ │ │ │ ├── dns_rbtnodechain_first_2.data │ │ │ │ │ ├── dns_rbtnodechain_first_data │ │ │ │ │ ├── dns_rbtnodechain_init.data │ │ │ │ │ ├── dns_rbtnodechain_init_data │ │ │ │ │ ├── dns_rbtnodechain_last_1.data │ │ │ │ │ ├── dns_rbtnodechain_last_2.data │ │ │ │ │ ├── dns_rbtnodechain_last_data │ │ │ │ │ ├── dns_rbtnodechain_next.data │ │ │ │ │ ├── dns_rbtnodechain_next_data │ │ │ │ │ ├── dns_rbtnodechain_prev.data │ │ │ │ │ ├── dns_rbtnodechain_prev_data │ │ │ │ │ └── t_rbt.c │ │ │ │ ├── rbt_test.c │ │ │ │ ├── rbt_test.out │ │ │ │ ├── rbt_test.txt │ │ │ │ ├── rdata_test.c │ │ │ │ ├── resolv.conf.sample │ │ │ │ ├── resolver │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── t_resolver.c │ │ │ │ ├── rwlock_test.c │ │ │ │ ├── serial_test.c │ │ │ │ ├── shutdown_test.c │ │ │ │ ├── sig0_test.c │ │ │ │ ├── sock_test.c │ │ │ │ ├── sockaddr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── t_sockaddr.c │ │ │ │ ├── startperf │ │ │ │ │ ├── README │ │ │ │ │ ├── makenames.pl │ │ │ │ │ ├── setup.sh │ │ │ │ │ └── smallzone.db │ │ │ │ ├── sym_test.c │ │ │ │ ├── system │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── acl │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ │ ├── named3.conf │ │ │ │ │ │ │ └── named4.conf │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── addzone │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── added.db │ │ │ │ │ │ │ ├── default.nzf.in │ │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ │ ├── named2.conf │ │ │ │ │ │ │ ├── normal.db │ │ │ │ │ │ │ └── previous.db │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── allow_query │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── aclallow.db │ │ │ │ │ │ │ ├── acldisallow.db │ │ │ │ │ │ │ ├── aclnotallow.db │ │ │ │ │ │ │ ├── added.db │ │ │ │ │ │ │ ├── addrallow.db │ │ │ │ │ │ │ ├── addrdisallow.db │ │ │ │ │ │ │ ├── addrnotallow.db │ │ │ │ │ │ │ ├── any.db │ │ │ │ │ │ │ ├── keyallow.db │ │ │ │ │ │ │ ├── keydisallow.db │ │ │ │ │ │ │ ├── named01.conf │ │ │ │ │ │ │ ├── named02.conf │ │ │ │ │ │ │ ├── named03.conf │ │ │ │ │ │ │ ├── named04.conf │ │ │ │ │ │ │ ├── named05.conf │ │ │ │ │ │ │ ├── named06.conf │ │ │ │ │ │ │ ├── named07.conf │ │ │ │ │ │ │ ├── named08.conf │ │ │ │ │ │ │ ├── named09.conf │ │ │ │ │ │ │ ├── named10.conf │ │ │ │ │ │ │ ├── named11.conf │ │ │ │ │ │ │ ├── named12.conf │ │ │ │ │ │ │ ├── named21.conf │ │ │ │ │ │ │ ├── named22.conf │ │ │ │ │ │ │ ├── named23.conf │ │ │ │ │ │ │ ├── named24.conf │ │ │ │ │ │ │ ├── named25.conf │ │ │ │ │ │ │ ├── named26.conf │ │ │ │ │ │ │ ├── named27.conf │ │ │ │ │ │ │ ├── named28.conf │ │ │ │ │ │ │ ├── named29.conf │ │ │ │ │ │ │ ├── named30.conf │ │ │ │ │ │ │ ├── named31.conf │ │ │ │ │ │ │ ├── named32.conf │ │ │ │ │ │ │ ├── named33.conf │ │ │ │ │ │ │ ├── named34.conf │ │ │ │ │ │ │ ├── named40.conf │ │ │ │ │ │ │ ├── named53.conf │ │ │ │ │ │ │ ├── named54.conf │ │ │ │ │ │ │ ├── named55.conf │ │ │ │ │ │ │ ├── named56.conf │ │ │ │ │ │ │ ├── none.db │ │ │ │ │ │ │ ├── normal.db │ │ │ │ │ │ │ └── previous.db │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── ans.pl │ │ │ │ │ ├── autosign │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── keygen.sh │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db.in │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── Xbar.+005+30676.key │ │ │ │ │ │ │ ├── Xbar.+005+30676.private │ │ │ │ │ │ │ ├── Xbar.+005+30804.key │ │ │ │ │ │ │ ├── Xbar.+005+30804.private │ │ │ │ │ │ │ ├── bar.db.in │ │ │ │ │ │ │ ├── child.nsec3.example.db │ │ │ │ │ │ │ ├── child.optout.example.db │ │ │ │ │ │ │ ├── dst.example.db.in │ │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ │ ├── insecure.secure.example.db │ │ │ │ │ │ │ ├── keygen.sh │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── private.secure.example.db.in │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── delay.example.db │ │ │ │ │ │ │ ├── inaczsk.example.db.in │ │ │ │ │ │ │ ├── insecure.example.db │ │ │ │ │ │ │ ├── keygen.sh │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── nozsk.example.db.in │ │ │ │ │ │ │ ├── nsec.example.db.in │ │ │ │ │ │ │ ├── nsec3-to-nsec.example.db.in │ │ │ │ │ │ │ ├── nsec3.example.db.in │ │ │ │ │ │ │ ├── nsec3.nsec3.example.db.in │ │ │ │ │ │ │ ├── nsec3.optout.example.db.in │ │ │ │ │ │ │ ├── oldsigs.example.db.in │ │ │ │ │ │ │ ├── optout.example.db.in │ │ │ │ │ │ │ ├── optout.nsec3.example.db.in │ │ │ │ │ │ │ ├── optout.optout.example.db.in │ │ │ │ │ │ │ ├── rsasha256.example.db.in │ │ │ │ │ │ │ ├── rsasha512.example.db.in │ │ │ │ │ │ │ ├── secure-to-insecure.example.db.in │ │ │ │ │ │ │ ├── secure-to-insecure2.example.db.in │ │ │ │ │ │ │ ├── secure.example.db.in │ │ │ │ │ │ │ ├── secure.nsec3.example.db.in │ │ │ │ │ │ │ └── secure.optout.example.db.in │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns5 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── builtin │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── cacheclean │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── dig.batch │ │ │ │ │ │ ├── knowngood.dig.out │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── checkconf │ │ │ │ │ │ ├── bad.conf │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── dnssec.1 │ │ │ │ │ │ ├── dnssec.2 │ │ │ │ │ │ ├── dnssec.3 │ │ │ │ │ │ ├── good.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── checknames │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── fail.example.db.in │ │ │ │ │ │ │ ├── fail.update.db.in │ │ │ │ │ │ │ ├── ignore.example.db.in │ │ │ │ │ │ │ ├── ignore.update.db.in │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ │ ├── warn.example.db.in │ │ │ │ │ │ │ └── warn.update.db.in │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.hints │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.hints │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── checkzone │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── tests.sh │ │ │ │ │ │ └── zones │ │ │ │ │ │ │ └── good1.db │ │ │ │ │ ├── cleanall.sh │ │ │ │ │ ├── cleanpkcs11.sh │ │ │ │ │ ├── common │ │ │ │ │ │ ├── controls.conf │ │ │ │ │ │ ├── rndc.conf │ │ │ │ │ │ ├── rndc.key │ │ │ │ │ │ └── root.hint │ │ │ │ │ ├── conf.sh │ │ │ │ │ ├── conf.sh.in │ │ │ │ │ ├── database │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf1 │ │ │ │ │ │ │ └── named.conf2 │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── dialup │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── hint.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── hint.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── digcomp.pl │ │ │ │ │ ├── dlv │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ │ ├── rootservers.utld.db │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── druz.db.in │ │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ │ └── utld.db │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── child.db.in │ │ │ │ │ │ │ ├── dlv.db.in │ │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ ├── child.db │ │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns5 │ │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── rndc.conf │ │ │ │ │ │ ├── ns6 │ │ │ │ │ │ │ ├── child.db.in │ │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── dlvauto │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── dlv.isc.org.db.in │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── dlz │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── dns-root │ │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ │ │ ├── dns.d │ │ │ │ │ │ │ │ │ └── @ │ │ │ │ │ │ │ │ │ │ ├── DNAME=10=example.net.= │ │ │ │ │ │ │ │ │ │ ├── NS=10=example.com.= │ │ │ │ │ │ │ │ │ │ └── SOA=10=ns.example.com.=root.example.com.=2010062900=0=0=0=10= │ │ │ │ │ │ │ │ │ └── xfr.d │ │ │ │ │ │ │ │ │ └── 10.53.0.1 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── prereq.sh.in │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── dlzexternal │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── dlopen.c │ │ │ │ │ │ ├── driver.c │ │ │ │ │ │ ├── driver.h │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── named.conf.in │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── dname │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── dns64 │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── conf │ │ │ │ │ │ │ ├── bad1.conf │ │ │ │ │ │ │ ├── bad2.conf │ │ │ │ │ │ │ ├── bad3.conf │ │ │ │ │ │ │ ├── bad4.conf │ │ │ │ │ │ │ ├── bad5.conf │ │ │ │ │ │ │ ├── bad6.conf │ │ │ │ │ │ │ ├── good1.conf │ │ │ │ │ │ │ ├── good2.conf │ │ │ │ │ │ │ ├── good3.conf │ │ │ │ │ │ │ ├── good4.conf │ │ │ │ │ │ │ └── good5.conf │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── dnssec │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── dnssec_update_test.pl │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── algroll.db.in │ │ │ │ │ │ │ ├── badparam.db.in │ │ │ │ │ │ │ ├── child.nsec3.example.db │ │ │ │ │ │ │ ├── child.optout.example.db │ │ │ │ │ │ │ ├── dlv.db.in │ │ │ │ │ │ │ ├── dst.example.db.in │ │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ │ ├── insecure.secure.example.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── private.secure.example.db.in │ │ │ │ │ │ │ ├── rfc2335.example.db │ │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ │ └── single-nsec3.db.in │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── auto-nsec.example.db.in │ │ │ │ │ │ │ ├── auto-nsec3.example.db.in │ │ │ │ │ │ │ ├── bogus.example.db.in │ │ │ │ │ │ │ ├── dynamic.example.db.in │ │ │ │ │ │ │ ├── expired.example.db.in │ │ │ │ │ │ │ ├── expiring.example.db.in │ │ │ │ │ │ │ ├── insecure.below-cname.example.db │ │ │ │ │ │ │ ├── insecure.example.db │ │ │ │ │ │ │ ├── insecure.nsec3.example.db │ │ │ │ │ │ │ ├── insecure.optout.example.db │ │ │ │ │ │ │ ├── keyless.example.db.in │ │ │ │ │ │ │ ├── kskonly.example.db.in │ │ │ │ │ │ │ ├── multiple.example.db.in │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── nsec3-unknown.example.db.in │ │ │ │ │ │ │ ├── nsec3.example.db.in │ │ │ │ │ │ │ ├── nsec3.nsec3.example.db.in │ │ │ │ │ │ │ ├── nsec3.optout.example.db.in │ │ │ │ │ │ │ ├── optout-unknown.example.db.in │ │ │ │ │ │ │ ├── optout.example.db.in │ │ │ │ │ │ │ ├── optout.nsec3.example.db.in │ │ │ │ │ │ │ ├── optout.optout.example.db.in │ │ │ │ │ │ │ ├── rsasha256.example.db.in │ │ │ │ │ │ │ ├── rsasha512.example.db.in │ │ │ │ │ │ │ ├── secure.below-cname.example.db.in │ │ │ │ │ │ │ ├── secure.example.db.in │ │ │ │ │ │ │ ├── secure.nsec3.example.db.in │ │ │ │ │ │ │ ├── secure.optout.example.db.in │ │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ │ ├── ttlpatch.example.db.in │ │ │ │ │ │ │ └── update-nsec3.example.db.in │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ │ └── named2.conf │ │ │ │ │ │ ├── ns5 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── trusted.conf.bad │ │ │ │ │ │ ├── ns6 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns7 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── named.nosoa │ │ │ │ │ │ │ └── nosoa.secure.example.db │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ ├── signer │ │ │ │ │ │ │ └── example.db.in │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── filter-aaaa │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── conf │ │ │ │ │ │ │ ├── bad1.conf │ │ │ │ │ │ │ ├── bad2.conf │ │ │ │ │ │ │ ├── bad3.conf │ │ │ │ │ │ │ ├── bad4.conf │ │ │ │ │ │ │ ├── bad5.conf │ │ │ │ │ │ │ ├── bad6.conf │ │ │ │ │ │ │ ├── good1.conf │ │ │ │ │ │ │ ├── good2.conf │ │ │ │ │ │ │ ├── good3.conf │ │ │ │ │ │ │ ├── good4.conf │ │ │ │ │ │ │ ├── good5.conf │ │ │ │ │ │ │ ├── good6.conf │ │ │ │ │ │ │ ├── good7.conf │ │ │ │ │ │ │ └── good8.conf │ │ │ │ │ │ ├── filter-aaaa.c │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ │ ├── signed.db.in │ │ │ │ │ │ │ └── unsigned.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ │ ├── signed.db.in │ │ │ │ │ │ │ └── unsigned.db │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── forward │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── genzone.sh │ │ │ │ │ ├── glue │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── fi.good │ │ │ │ │ │ ├── noglue.good │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── cache.in │ │ │ │ │ │ │ ├── mil.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── net.db │ │ │ │ │ │ │ ├── root-servers.nil.db │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ ├── tests.sh │ │ │ │ │ │ ├── xx.good │ │ │ │ │ │ └── yy.good │ │ │ │ │ ├── gost │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── prereq.sh.in │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── ifconfig.sh │ │ │ │ │ ├── ixfr │ │ │ │ │ │ ├── ans2 │ │ │ │ │ │ │ └── startme │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── knowngood.dig.out.1000 │ │ │ │ │ │ ├── knowngood.dig.out.2000 │ │ │ │ │ │ ├── knowngood.dig.out.3000 │ │ │ │ │ │ ├── knowngood.dig.out.4000 │ │ │ │ │ │ ├── knowngood.dig.out.a-maximum-rrset │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── logfileconfig │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.dirconf │ │ │ │ │ │ │ ├── named.pipeconf │ │ │ │ │ │ │ ├── named.plain │ │ │ │ │ │ │ ├── named.symconf │ │ │ │ │ │ │ ├── rndc.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── lwresd │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── lwresd1 │ │ │ │ │ │ │ ├── lwresd.conf │ │ │ │ │ │ │ └── resolv.conf │ │ │ │ │ │ ├── lwtest.c │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── 10.10.10.in-addr.arpa.db │ │ │ │ │ │ │ ├── e.example1.db │ │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ │ ├── example2.db │ │ │ │ │ │ │ ├── ip6.arpa.db │ │ │ │ │ │ │ ├── ip6.int.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── resolv.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── masterfile │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── knowngood.dig.out │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── include.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── sub.db │ │ │ │ │ │ │ ├── ttl1.db │ │ │ │ │ │ │ └── ttl2.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── masterformat │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── compile.sh │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── metadata │ │ │ │ │ │ ├── child.db │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── parent.db │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── notify │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ │ ├── example2.db │ │ │ │ │ │ │ ├── example3.db │ │ │ │ │ │ │ ├── example4.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── nsupdate │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── knowngood.ns1.after │ │ │ │ │ │ ├── knowngood.ns1.afterstop │ │ │ │ │ │ ├── knowngood.ns1.before │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── dnskey.test.db.in │ │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── nsec3param.test.db.in │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ ├── tests.sh │ │ │ │ │ │ └── update_test.pl │ │ │ │ │ ├── org.isc.bind.system │ │ │ │ │ ├── org.isc.bind.system.plist │ │ │ │ │ ├── packet.pl │ │ │ │ │ ├── pending │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db.in │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── example.com.db.in │ │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ │ ├── forgery.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── hostile.db │ │ │ │ │ │ │ ├── mail.example.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── pkcs11 │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ ├── tests.sh │ │ │ │ │ │ └── usepkcs11 │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── ans2 │ │ │ │ │ │ │ └── ans.pl │ │ │ │ │ │ ├── ans3 │ │ │ │ │ │ │ └── ans.pl │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.hint │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ ├── child.server.db │ │ │ │ │ │ │ ├── moves.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── named.noaa │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns5 │ │ │ │ │ │ │ ├── child.server.db │ │ │ │ │ │ │ ├── moves.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.hint │ │ │ │ │ │ ├── ns6 │ │ │ │ │ │ │ ├── example.net.db.in │ │ │ │ │ │ │ ├── keygen.sh │ │ │ │ │ │ │ ├── moves.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns7 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.hint │ │ │ │ │ │ │ └── server.db.in │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── rpz │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── tld2.db │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── base.db │ │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── rpz.c │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── test5 │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── rrsetorder │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── dig.out.fixed.good │ │ │ │ │ │ ├── dig.out.random.good1 │ │ │ │ │ │ ├── dig.out.random.good10 │ │ │ │ │ │ ├── dig.out.random.good11 │ │ │ │ │ │ ├── dig.out.random.good12 │ │ │ │ │ │ ├── dig.out.random.good13 │ │ │ │ │ │ ├── dig.out.random.good14 │ │ │ │ │ │ ├── dig.out.random.good15 │ │ │ │ │ │ ├── dig.out.random.good16 │ │ │ │ │ │ ├── dig.out.random.good17 │ │ │ │ │ │ ├── dig.out.random.good18 │ │ │ │ │ │ ├── dig.out.random.good19 │ │ │ │ │ │ ├── dig.out.random.good2 │ │ │ │ │ │ ├── dig.out.random.good20 │ │ │ │ │ │ ├── dig.out.random.good21 │ │ │ │ │ │ ├── dig.out.random.good22 │ │ │ │ │ │ ├── dig.out.random.good23 │ │ │ │ │ │ ├── dig.out.random.good24 │ │ │ │ │ │ ├── dig.out.random.good3 │ │ │ │ │ │ ├── dig.out.random.good4 │ │ │ │ │ │ ├── dig.out.random.good5 │ │ │ │ │ │ ├── dig.out.random.good6 │ │ │ │ │ │ ├── dig.out.random.good7 │ │ │ │ │ │ ├── dig.out.random.good8 │ │ │ │ │ │ ├── dig.out.random.good9 │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── runall.sh │ │ │ │ │ ├── send.pl │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── smartsign │ │ │ │ │ │ ├── child.db │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── parent.db │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── sortlist │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── start.pl │ │ │ │ │ ├── start.sh │ │ │ │ │ ├── staticstub │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── conf │ │ │ │ │ │ │ ├── bad01.conf │ │ │ │ │ │ │ ├── bad02.conf │ │ │ │ │ │ │ ├── bad03.conf │ │ │ │ │ │ │ ├── bad04.conf │ │ │ │ │ │ │ ├── bad05.conf │ │ │ │ │ │ │ ├── bad06.conf │ │ │ │ │ │ │ ├── bad07.conf │ │ │ │ │ │ │ ├── bad08.conf │ │ │ │ │ │ │ ├── bad09.conf │ │ │ │ │ │ │ ├── bad10.conf │ │ │ │ │ │ │ ├── bad11.conf │ │ │ │ │ │ │ ├── good01.conf │ │ │ │ │ │ │ ├── good02.conf │ │ │ │ │ │ │ ├── good03.conf │ │ │ │ │ │ │ ├── good04.conf │ │ │ │ │ │ │ └── good05.conf │ │ │ │ │ │ ├── knowngood.dig.out.rec │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf.in │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ │ ├── example.org.db │ │ │ │ │ │ │ ├── named.conf.in │ │ │ │ │ │ │ └── sign.sh │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ ├── example.com.db │ │ │ │ │ │ │ ├── example.info.db │ │ │ │ │ │ │ ├── example.org.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ │ └── sub.example.db.in │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── stop.pl │ │ │ │ │ ├── stop.sh │ │ │ │ │ ├── stress │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── setup.pl │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ ├── tests.sh │ │ │ │ │ │ └── update.pl │ │ │ │ │ ├── stub │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── knowngood.dig.out.norec │ │ │ │ │ │ ├── knowngood.dig.out.rec │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── child.example.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── testsock.pl │ │ │ │ │ ├── testsock6.pl │ │ │ │ │ ├── tkey │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── keycreate.c │ │ │ │ │ │ ├── keydelete.c │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf.in │ │ │ │ │ │ │ └── setup.sh │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── tsig │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── tsiggss │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── authsock.pl │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── gssapi_krb.c │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── administrator.ccache │ │ │ │ │ │ │ ├── dns.keytab │ │ │ │ │ │ │ ├── example.nil.db.in │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── testdenied.ccache │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── unknown │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── broken1.db │ │ │ │ │ │ │ ├── broken2.db │ │ │ │ │ │ │ ├── broken3.db │ │ │ │ │ │ │ ├── broken4.db │ │ │ │ │ │ │ ├── broken5.db │ │ │ │ │ │ │ ├── class10.hints │ │ │ │ │ │ │ ├── example-class10.db │ │ │ │ │ │ │ ├── example-in.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── upforwd │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── knowngood.after1 │ │ │ │ │ │ ├── knowngood.after2 │ │ │ │ │ │ ├── knowngood.before │ │ │ │ │ │ ├── knowngood.ns2.before │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── v6synth │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ ├── ip6.arpa.db │ │ │ │ │ │ │ ├── ip6.int.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── views │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── example1.db │ │ │ │ │ │ │ ├── example2.db │ │ │ │ │ │ │ ├── internal.db │ │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ │ └── named2.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ ├── internal.db │ │ │ │ │ │ │ ├── named1.conf │ │ │ │ │ │ │ └── named2.conf │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── xfer │ │ │ │ │ │ ├── ans5 │ │ │ │ │ │ │ ├── badkeydata │ │ │ │ │ │ │ ├── goodaxfr │ │ │ │ │ │ │ ├── partial │ │ │ │ │ │ │ ├── unknownkey │ │ │ │ │ │ │ ├── unsigned │ │ │ │ │ │ │ └── wrongkey │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── dig1.good │ │ │ │ │ │ ├── dig2.good │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns3 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns4 │ │ │ │ │ │ │ └── named.conf.base │ │ │ │ │ │ ├── ns6 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── ns7 │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── prereq.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── xferquota │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── changing1.db │ │ │ │ │ │ │ ├── changing2.db │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ └── root.db │ │ │ │ │ │ ├── ns2 │ │ │ │ │ │ │ ├── example.db │ │ │ │ │ │ │ └── named.conf │ │ │ │ │ │ ├── setup.pl │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ └── zonechecks │ │ │ │ │ │ ├── a.db │ │ │ │ │ │ ├── aaaa.db │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── cname.db │ │ │ │ │ │ ├── dname.db │ │ │ │ │ │ ├── noaddress.db │ │ │ │ │ │ ├── nxdomain.db │ │ │ │ │ │ └── tests.sh │ │ │ │ ├── t_api.pl │ │ │ │ ├── task_test.c │ │ │ │ ├── tasks │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── t_tasks.c │ │ │ │ ├── timer_test.c │ │ │ │ ├── timers │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── t_timers.c │ │ │ │ ├── virtual-time │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── autosign-ksk │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ │ └── wrap.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── autosign-zsk │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ │ ├── sign.sh │ │ │ │ │ │ │ └── wrap.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── cleanall.sh │ │ │ │ │ ├── common │ │ │ │ │ │ ├── controls.conf │ │ │ │ │ │ ├── rndc.conf │ │ │ │ │ │ └── root.hint │ │ │ │ │ ├── conf.sh │ │ │ │ │ ├── conf.sh.in │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── runall.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── slave │ │ │ │ │ │ ├── clean.sh │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ ├── example.db.in │ │ │ │ │ │ │ ├── named.conf │ │ │ │ │ │ │ ├── root.db │ │ │ │ │ │ │ └── wrap.sh │ │ │ │ │ │ ├── setup.sh │ │ │ │ │ │ └── tests.sh │ │ │ │ │ ├── start.pl │ │ │ │ │ ├── start.sh │ │ │ │ │ ├── stop.pl │ │ │ │ │ ├── stop.sh │ │ │ │ │ ├── testsock.pl │ │ │ │ │ └── vtwrapper.c │ │ │ │ ├── wire_test.c │ │ │ │ ├── wire_test.data │ │ │ │ ├── wire_test.data2 │ │ │ │ ├── wire_test.data3 │ │ │ │ ├── wire_test.data4 │ │ │ │ └── zone_test.c │ │ │ ├── tools │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── arpaname.1 │ │ │ │ ├── arpaname.c │ │ │ │ ├── arpaname.docbook │ │ │ │ ├── arpaname.html │ │ │ │ ├── genrandom.8 │ │ │ │ ├── genrandom.c │ │ │ │ ├── genrandom.docbook │ │ │ │ ├── genrandom.html │ │ │ │ ├── isc-hmac-fixup.8 │ │ │ │ ├── isc-hmac-fixup.c │ │ │ │ ├── isc-hmac-fixup.docbook │ │ │ │ ├── isc-hmac-fixup.html │ │ │ │ ├── named-journalprint.8 │ │ │ │ ├── named-journalprint.c │ │ │ │ ├── named-journalprint.docbook │ │ │ │ ├── named-journalprint.html │ │ │ │ ├── nsec3hash.8 │ │ │ │ ├── nsec3hash.c │ │ │ │ ├── nsec3hash.docbook │ │ │ │ ├── nsec3hash.html │ │ │ │ └── win32 │ │ │ │ │ ├── arpaname.dsp │ │ │ │ │ ├── arpaname.dsw │ │ │ │ │ ├── arpaname.mak │ │ │ │ │ ├── genrandom.dsp │ │ │ │ │ ├── genrandom.dsw │ │ │ │ │ ├── genrandom.mak │ │ │ │ │ ├── ischmacfixup.dsp │ │ │ │ │ ├── ischmacfixup.dsw │ │ │ │ │ ├── ischmacfixup.mak │ │ │ │ │ ├── journalprint.dsp │ │ │ │ │ ├── journalprint.dsw │ │ │ │ │ ├── journalprint.mak │ │ │ │ │ ├── nsec3hash.dsp │ │ │ │ │ ├── nsec3hash.dsw │ │ │ │ │ └── nsec3hash.mak │ │ │ └── win32 │ │ │ │ └── BINDInstall │ │ │ │ ├── AccountInfo.cpp │ │ │ │ ├── AccountInfo.h │ │ │ │ ├── BINDInstall.cpp │ │ │ │ ├── BINDInstall.dsp │ │ │ │ ├── BINDInstall.dsw │ │ │ │ ├── BINDInstall.h │ │ │ │ ├── BINDInstall.mak │ │ │ │ ├── BINDInstall.rc │ │ │ │ ├── BINDInstallDlg.cpp │ │ │ │ ├── BINDInstallDlg.h │ │ │ │ ├── DirBrowse.cpp │ │ │ │ ├── DirBrowse.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── VersionInfo.cpp │ │ │ │ ├── VersionInfo.h │ │ │ │ ├── res │ │ │ │ ├── BINDInstall.ico │ │ │ │ └── BINDInstall.rc2 │ │ │ │ └── resource.h │ │ ├── bind.keys │ │ ├── config.guess │ │ ├── config.h │ │ ├── config.h.in │ │ ├── config.h.win32 │ │ ├── config.log │ │ ├── config.status │ │ ├── config.sub │ │ ├── config.threads.in │ │ ├── configure │ │ ├── configure.in │ │ ├── contrib │ │ │ ├── check-secure-delegation.pl │ │ │ ├── check-secure-delegation.pl.in │ │ │ ├── dbus │ │ │ │ ├── GetForwarders │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.9.3.2b1 │ │ │ │ ├── Makefile.9.3.3rc2 │ │ │ │ ├── README.DBUS │ │ │ │ ├── SetForwarders │ │ │ │ ├── bind-9.3.2b1-dbus.patch │ │ │ │ ├── bind-9.3.3rc2-dbus.patch │ │ │ │ ├── dbus_mgr.c │ │ │ │ ├── dbus_mgr.h │ │ │ │ ├── dbus_service.c │ │ │ │ ├── dbus_service.h │ │ │ │ ├── named-dbus-system.conf │ │ │ │ └── named-dbus.service │ │ │ ├── dlz │ │ │ │ ├── bin │ │ │ │ │ └── dlzbdb │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── dlzbdb.c │ │ │ │ ├── config.dlz.in │ │ │ │ ├── drivers │ │ │ │ │ ├── dlz_bdb_driver.c │ │ │ │ │ ├── dlz_bdbhpt_driver.c │ │ │ │ │ ├── dlz_dlopen_driver.c │ │ │ │ │ ├── dlz_drivers.c │ │ │ │ │ ├── dlz_filesystem_driver.c │ │ │ │ │ ├── dlz_ldap_driver.c │ │ │ │ │ ├── dlz_mysql_driver.c │ │ │ │ │ ├── dlz_odbc_driver.c │ │ │ │ │ ├── dlz_postgres_driver.c │ │ │ │ │ ├── dlz_stub_driver.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── dlz │ │ │ │ │ │ │ ├── dlz_bdb_driver.h │ │ │ │ │ │ │ ├── dlz_bdbhpt_driver.h │ │ │ │ │ │ │ ├── dlz_dlopen_driver.h │ │ │ │ │ │ │ ├── dlz_drivers.h │ │ │ │ │ │ │ ├── dlz_filesystem_driver.h │ │ │ │ │ │ │ ├── dlz_ldap_driver.h │ │ │ │ │ │ │ ├── dlz_mysql_driver.h │ │ │ │ │ │ │ ├── dlz_odbc_driver.h │ │ │ │ │ │ │ ├── dlz_postgres_driver.h │ │ │ │ │ │ │ ├── dlz_stub_driver.h │ │ │ │ │ │ │ └── sdlz_helper.h │ │ │ │ │ ├── rules.in │ │ │ │ │ └── sdlz_helper.c │ │ │ │ └── example │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dlz_example.c │ │ │ │ │ └── dlz_minimal.h │ │ │ ├── idn │ │ │ │ ├── README.idnkit │ │ │ │ └── idnkit-1.0-src │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── DISTFILES │ │ │ │ │ ├── INSTALL │ │ │ │ │ ├── INSTALL.ja │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── NEWS │ │ │ │ │ ├── README │ │ │ │ │ ├── README.ja │ │ │ │ │ ├── acconfig.h │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.in │ │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── config.h.win │ │ │ │ │ ├── idn │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── aliaslist.h │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── checker.h │ │ │ │ │ │ ├── converter.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── delimitermap.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── filechecker.h │ │ │ │ │ │ ├── filemapper.h │ │ │ │ │ │ ├── localencoding.h │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ ├── logmacro.h │ │ │ │ │ │ ├── mapper.h │ │ │ │ │ │ ├── mapselector.h │ │ │ │ │ │ ├── nameprep.h │ │ │ │ │ │ ├── normalizer.h │ │ │ │ │ │ ├── punycode.h │ │ │ │ │ │ ├── race.h │ │ │ │ │ │ ├── res.h │ │ │ │ │ │ ├── resconf.h │ │ │ │ │ │ ├── result.h │ │ │ │ │ │ ├── strhash.h │ │ │ │ │ │ ├── ucs4.h │ │ │ │ │ │ ├── ucsmap.h │ │ │ │ │ │ ├── ucsset.h │ │ │ │ │ │ ├── unicode.h │ │ │ │ │ │ ├── unormalize.h │ │ │ │ │ │ ├── utf8.h │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ └── version.h │ │ │ │ │ └── mdn │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ ├── localencoding.h │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ ├── res.h │ │ │ │ │ │ ├── resconf.h │ │ │ │ │ │ ├── result.h │ │ │ │ │ │ ├── utf8.h │ │ │ │ │ │ └── version.h │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── lib │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── aliaslist.c │ │ │ │ │ ├── aliaslist.sh │ │ │ │ │ ├── api.c │ │ │ │ │ ├── checker.c │ │ │ │ │ ├── converter.c │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── delimitermap.c │ │ │ │ │ ├── filechecker.c │ │ │ │ │ ├── filemapper.c │ │ │ │ │ ├── idn.conf.sample.in │ │ │ │ │ ├── localencoding.c │ │ │ │ │ ├── log.c │ │ │ │ │ ├── make.wnt │ │ │ │ │ ├── mapper.c │ │ │ │ │ ├── mapselector.c │ │ │ │ │ ├── nameprep.c │ │ │ │ │ ├── nameprep_template.c │ │ │ │ │ ├── nameprepdata.c │ │ │ │ │ ├── normalizer.c │ │ │ │ │ ├── punycode.c │ │ │ │ │ ├── race.c │ │ │ │ │ ├── res.c │ │ │ │ │ ├── resconf.c │ │ │ │ │ ├── result.c │ │ │ │ │ ├── strhash.c │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── api-init1.tsy │ │ │ │ │ │ ├── api-init2.tsy │ │ │ │ │ │ ├── api-init3.tsy │ │ │ │ │ │ ├── api-init4-1.tsy │ │ │ │ │ │ ├── api-init4-2.tsy │ │ │ │ │ │ ├── api-init4-3.tsy │ │ │ │ │ │ ├── api-init5-1.tsy │ │ │ │ │ │ ├── api-init5-2.tsy │ │ │ │ │ │ ├── api-init5-3.tsy │ │ │ │ │ │ ├── api.tsy │ │ │ │ │ │ ├── checker.tsy │ │ │ │ │ │ ├── codeset.h │ │ │ │ │ │ ├── converter.tsy │ │ │ │ │ │ ├── delimitermap.tsy │ │ │ │ │ │ ├── iconvchk.c │ │ │ │ │ │ ├── mapper.tsy │ │ │ │ │ │ ├── mapselector.tsy │ │ │ │ │ │ ├── nameprep.tsy │ │ │ │ │ │ ├── normalizer.tsy │ │ │ │ │ │ ├── res.tsy │ │ │ │ │ │ ├── resconf.tsy │ │ │ │ │ │ ├── setenv.c │ │ │ │ │ │ ├── setenv.h │ │ │ │ │ │ ├── testsuite.c │ │ │ │ │ │ ├── testsuite.h │ │ │ │ │ │ ├── testutil.c │ │ │ │ │ │ ├── testutil.h │ │ │ │ │ │ ├── testygen │ │ │ │ │ │ ├── ucs4.tsy │ │ │ │ │ │ └── utffilter │ │ │ │ │ ├── ucs4.c │ │ │ │ │ ├── ucsmap.c │ │ │ │ │ ├── ucsset.c │ │ │ │ │ ├── unicode.c │ │ │ │ │ ├── unicode_template.c │ │ │ │ │ ├── unicodedata_320.c │ │ │ │ │ ├── unormalize.c │ │ │ │ │ ├── utf8.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── version.c │ │ │ │ │ ├── ltconfig │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── make.wnt │ │ │ │ │ ├── man │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── idn.conf.5.in │ │ │ │ │ └── libidnkit.3.in │ │ │ │ │ ├── map │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── jp.map │ │ │ │ │ ├── mkinstalldirs │ │ │ │ │ ├── patch │ │ │ │ │ └── bind9 │ │ │ │ │ │ ├── bind-9.2.1-patch │ │ │ │ │ │ └── bind-9.2.2-patch │ │ │ │ │ ├── tools │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── idnconv │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── idnconv.1 │ │ │ │ │ │ ├── idnconv.c │ │ │ │ │ │ ├── idnslookup.in │ │ │ │ │ │ ├── make.wnt │ │ │ │ │ │ ├── selectiveencode.c │ │ │ │ │ │ ├── selectiveencode.h │ │ │ │ │ │ ├── util.c │ │ │ │ │ │ └── util.h │ │ │ │ │ ├── make.wnt │ │ │ │ │ ├── rpm │ │ │ │ │ │ └── idnkit.spec │ │ │ │ │ └── runidn │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── resolver.c │ │ │ │ │ │ ├── resolver.h │ │ │ │ │ │ ├── runidn.1 │ │ │ │ │ │ ├── runidn.in │ │ │ │ │ │ ├── stub.c │ │ │ │ │ │ └── stub.h │ │ │ │ │ ├── util │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── SparseMap.pm │ │ │ │ │ ├── UCD.pm │ │ │ │ │ ├── generate_nameprep_data.pl │ │ │ │ │ └── generate_normalize_data.pl │ │ │ │ │ ├── win │ │ │ │ │ └── README.WIN │ │ │ │ │ └── wsock │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── README_j.txt │ │ │ │ │ ├── common │ │ │ │ │ ├── checkdll.c │ │ │ │ │ ├── convert.c │ │ │ │ │ ├── dump.c │ │ │ │ │ ├── encoding.c │ │ │ │ │ ├── hook.c │ │ │ │ │ ├── make.wnt │ │ │ │ │ ├── printf.c │ │ │ │ │ └── wrapcommon.h │ │ │ │ │ ├── config │ │ │ │ │ ├── idnconf.tcl │ │ │ │ │ └── make.wnt │ │ │ │ │ ├── make.wnt │ │ │ │ │ ├── wsock11 │ │ │ │ │ ├── dlldef.h │ │ │ │ │ ├── dllfunc.c │ │ │ │ │ ├── dllload.c │ │ │ │ │ ├── dllmain.c │ │ │ │ │ ├── dllstub.c │ │ │ │ │ ├── make.wnt │ │ │ │ │ └── wsock32.def │ │ │ │ │ └── wsock20 │ │ │ │ │ ├── dlldef.h │ │ │ │ │ ├── dllfunc.c │ │ │ │ │ ├── dllload.c │ │ │ │ │ ├── dllmain.c │ │ │ │ │ ├── dllstub.c │ │ │ │ │ ├── make.wnt │ │ │ │ │ └── ws2_32.def │ │ │ ├── linux │ │ │ │ └── coredump-patch │ │ │ ├── named-bootconf │ │ │ │ └── named-bootconf.sh │ │ │ ├── nanny │ │ │ │ └── nanny.pl │ │ │ ├── nslint-2.1a3 │ │ │ │ ├── CHANGES │ │ │ │ ├── FILES │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── VERSION │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── install-sh │ │ │ │ ├── lbl │ │ │ │ │ ├── gnuc.h │ │ │ │ │ ├── os-irix5.h │ │ │ │ │ ├── os-osf3.h │ │ │ │ │ ├── os-solaris2.h │ │ │ │ │ ├── os-sunos4.h │ │ │ │ │ └── os-ultrix4.h │ │ │ │ ├── mkdep │ │ │ │ ├── nslint.8 │ │ │ │ ├── nslint.c │ │ │ │ ├── savestr.c │ │ │ │ ├── savestr.h │ │ │ │ └── strerror.c │ │ │ ├── pkcs11-keygen │ │ │ │ └── README │ │ │ ├── query-loc-0.4.0 │ │ │ │ ├── ADDRESSES │ │ │ │ ├── ALGO │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── USAGE │ │ │ │ ├── config.h.in │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── install-sh │ │ │ │ ├── loc.c │ │ │ │ ├── loc.h │ │ │ │ ├── loc_ntoa.c │ │ │ │ ├── query-loc.1 │ │ │ │ ├── query-loc.c │ │ │ │ └── reconf │ │ │ ├── queryperf │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── config.h.in │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── input │ │ │ │ │ ├── sample.0 │ │ │ │ │ └── sample.1 │ │ │ │ ├── missing │ │ │ │ │ ├── addrinfo.h │ │ │ │ │ ├── getaddrinfo.c │ │ │ │ │ └── getnameinfo.c │ │ │ │ ├── queryperf.c │ │ │ │ └── utils │ │ │ │ │ └── gen-data-queryperf.py │ │ │ ├── sdb │ │ │ │ ├── bdb │ │ │ │ │ ├── README │ │ │ │ │ ├── bdb.c │ │ │ │ │ ├── bdb.h │ │ │ │ │ └── zone2bdb.c │ │ │ │ ├── dir │ │ │ │ │ ├── dirdb.c │ │ │ │ │ └── dirdb.h │ │ │ │ ├── ldap │ │ │ │ │ ├── INSTALL.ldap │ │ │ │ │ ├── README.ldap │ │ │ │ │ ├── README.zone2ldap │ │ │ │ │ ├── ldapdb.c │ │ │ │ │ ├── ldapdb.h │ │ │ │ │ ├── zone2ldap.1 │ │ │ │ │ └── zone2ldap.c │ │ │ │ ├── pgsql │ │ │ │ │ ├── pgsqldb.c │ │ │ │ │ ├── pgsqldb.h │ │ │ │ │ └── zonetodb.c │ │ │ │ ├── sqlite │ │ │ │ │ ├── README.sdb_sqlite │ │ │ │ │ ├── sqlitedb.c │ │ │ │ │ ├── sqlitedb.h │ │ │ │ │ └── zone2sqlite.c │ │ │ │ ├── tcl │ │ │ │ │ ├── lookup.tcl │ │ │ │ │ ├── tcldb.c │ │ │ │ │ └── tcldb.h │ │ │ │ └── time │ │ │ │ │ ├── timedb.c │ │ │ │ │ └── timedb.h │ │ │ ├── zkt │ │ │ │ ├── CHANGELOG │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── README.logging │ │ │ │ ├── TODO │ │ │ │ ├── config.h.in │ │ │ │ ├── config_zkt.h │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── debug.h │ │ │ │ ├── dki.c │ │ │ │ ├── dki.h │ │ │ │ ├── dnssec-zkt.c │ │ │ │ ├── doc │ │ │ │ │ ├── KeyRollover.ms │ │ │ │ │ └── rfc5011.txt │ │ │ │ ├── domaincmp.c │ │ │ │ ├── domaincmp.h │ │ │ │ ├── examples │ │ │ │ │ ├── dnssec.conf │ │ │ │ │ ├── flat │ │ │ │ │ │ ├── dyn.example.net │ │ │ │ │ │ │ ├── Kdyn.example.net.+007+30323.key │ │ │ │ │ │ │ ├── Kdyn.example.net.+007+30323.private │ │ │ │ │ │ │ ├── Kdyn.example.net.+007+52935.key │ │ │ │ │ │ │ ├── Kdyn.example.net.+007+52935.private │ │ │ │ │ │ │ └── zktlog-dyn.example.net. │ │ │ │ │ │ ├── example.net │ │ │ │ │ │ │ ├── Kexample.net.+008+08406.key │ │ │ │ │ │ │ ├── Kexample.net.+008+08406.private │ │ │ │ │ │ │ ├── Kexample.net.+008+36257.key │ │ │ │ │ │ │ ├── Kexample.net.+008+36257.private │ │ │ │ │ │ │ ├── dnssec.conf │ │ │ │ │ │ │ ├── z.db │ │ │ │ │ │ │ └── zktlog-example.net. │ │ │ │ │ │ └── sub.example.net │ │ │ │ │ │ │ ├── Ksub.example.net.+007+02048.key │ │ │ │ │ │ │ ├── Ksub.example.net.+007+02048.published │ │ │ │ │ │ │ ├── Ksub.example.net.+007+41747.key │ │ │ │ │ │ │ ├── Ksub.example.net.+007+41747.private │ │ │ │ │ │ │ ├── Ksub.example.net.+007+42834.key │ │ │ │ │ │ │ ├── Ksub.example.net.+007+42834.private │ │ │ │ │ │ │ └── zktlog-sub.example.net. │ │ │ │ │ ├── hierarchical │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── example.de │ │ │ │ │ │ │ │ ├── Kexample.de.+005+09743.key │ │ │ │ │ │ │ │ ├── Kexample.de.+005+09743.published │ │ │ │ │ │ │ │ ├── Kexample.de.+005+39599.key │ │ │ │ │ │ │ │ ├── Kexample.de.+005+39599.private │ │ │ │ │ │ │ │ └── sub.example.de │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+07295.key │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+07295.private │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+08544.key │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+08544.private │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+27861.key │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+27861.private │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+40559.key │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+40559.published │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+42639.key │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+42639.private │ │ │ │ │ │ │ │ ├── Ksub.example.de.+005+63530.depreciated │ │ │ │ │ │ │ │ └── Ksub.example.de.+005+63530.key │ │ │ │ │ │ └── log │ │ │ │ │ │ │ ├── zktlog-example.de. │ │ │ │ │ │ │ └── zktlog-sub.example.de. │ │ │ │ │ ├── zkt-ls.sh │ │ │ │ │ └── zkt-signer.sh │ │ │ │ ├── log.c │ │ │ │ ├── log.h │ │ │ │ ├── man │ │ │ │ │ ├── dnssec-zkt.8 │ │ │ │ │ ├── dnssec-zkt.8.pdf │ │ │ │ │ ├── zkt-conf.8 │ │ │ │ │ ├── zkt-conf.8.html │ │ │ │ │ ├── zkt-conf.8.org │ │ │ │ │ ├── zkt-conf.8.pdf │ │ │ │ │ ├── zkt-keyman.8 │ │ │ │ │ ├── zkt-keyman.8.html │ │ │ │ │ ├── zkt-keyman.8.pdf │ │ │ │ │ ├── zkt-ls.8 │ │ │ │ │ ├── zkt-ls.8.html │ │ │ │ │ ├── zkt-ls.8.pdf │ │ │ │ │ ├── zkt-signer.8 │ │ │ │ │ ├── zkt-signer.8.html │ │ │ │ │ └── zkt-signer.8.pdf │ │ │ │ ├── misc.c │ │ │ │ ├── misc.h │ │ │ │ ├── ncparse.c │ │ │ │ ├── ncparse.h │ │ │ │ ├── nscomm.c │ │ │ │ ├── nscomm.h │ │ │ │ ├── rollover.c │ │ │ │ ├── rollover.h │ │ │ │ ├── soaserial.c │ │ │ │ ├── soaserial.h │ │ │ │ ├── strlist.c │ │ │ │ ├── strlist.h │ │ │ │ ├── tcap.c │ │ │ │ ├── tcap.h │ │ │ │ ├── zconf.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zfparse.c │ │ │ │ ├── zfparse.h │ │ │ │ ├── zkt-conf.c │ │ │ │ ├── zkt-keyman.c │ │ │ │ ├── zkt-ls.c │ │ │ │ ├── zkt-signer.c │ │ │ │ ├── zkt-soaserial.c │ │ │ │ ├── zkt.c │ │ │ │ ├── zkt.h │ │ │ │ ├── zone.c │ │ │ │ └── zone.h │ │ │ ├── zone-edit.sh │ │ │ └── zone-edit.sh.in │ │ ├── doc │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── arm │ │ │ │ ├── Bv9ARM-book.xml │ │ │ │ ├── Bv9ARM.ch01.html │ │ │ │ ├── Bv9ARM.ch02.html │ │ │ │ ├── Bv9ARM.ch03.html │ │ │ │ ├── Bv9ARM.ch04.html │ │ │ │ ├── Bv9ARM.ch05.html │ │ │ │ ├── Bv9ARM.ch06.html │ │ │ │ ├── Bv9ARM.ch07.html │ │ │ │ ├── Bv9ARM.ch08.html │ │ │ │ ├── Bv9ARM.ch09.html │ │ │ │ ├── Bv9ARM.ch10.html │ │ │ │ ├── Bv9ARM.html │ │ │ │ ├── Bv9ARM.pdf │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README-SGML │ │ │ │ ├── dnssec.xml │ │ │ │ ├── isc-logo.eps │ │ │ │ ├── isc-logo.pdf │ │ │ │ ├── latex-fixup.pl │ │ │ │ ├── libdns.xml │ │ │ │ ├── man.arpaname.html │ │ │ │ ├── man.ddns-confgen.html │ │ │ │ ├── man.dig.html │ │ │ │ ├── man.dnssec-dsfromkey.html │ │ │ │ ├── man.dnssec-keyfromlabel.html │ │ │ │ ├── man.dnssec-keygen.html │ │ │ │ ├── man.dnssec-revoke.html │ │ │ │ ├── man.dnssec-settime.html │ │ │ │ ├── man.dnssec-signzone.html │ │ │ │ ├── man.genrandom.html │ │ │ │ ├── man.host.html │ │ │ │ ├── man.isc-hmac-fixup.html │ │ │ │ ├── man.named-checkconf.html │ │ │ │ ├── man.named-checkzone.html │ │ │ │ ├── man.named-journalprint.html │ │ │ │ ├── man.named.html │ │ │ │ ├── man.nsec3hash.html │ │ │ │ ├── man.nsupdate.html │ │ │ │ ├── man.rndc-confgen.html │ │ │ │ ├── man.rndc.conf.html │ │ │ │ ├── man.rndc.html │ │ │ │ ├── managed-keys.xml │ │ │ │ └── pkcs11.xml │ │ │ ├── doxygen │ │ │ │ ├── Doxyfile │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── doxygen-input-filter │ │ │ │ ├── doxygen-input-filter.in │ │ │ │ ├── isc-footer.html │ │ │ │ ├── isc-header.html │ │ │ │ └── mainpage │ │ │ ├── draft │ │ │ │ ├── draft-faltstrom-uri-06.txt │ │ │ │ ├── draft-ietf-6man-text-addr-representation-07.txt │ │ │ │ ├── draft-ietf-behave-address-format-07.txt │ │ │ │ ├── draft-ietf-behave-dns64-11.txt │ │ │ │ ├── draft-ietf-dnsext-axfr-clarify-14.txt │ │ │ │ ├── draft-ietf-dnsext-dns-tcp-requirements-03.txt │ │ │ │ ├── draft-ietf-dnsext-dnssec-bis-updates-12.txt │ │ │ │ ├── draft-ietf-dnsext-dnssec-registry-fixes-06.txt │ │ │ │ ├── draft-ietf-dnsext-ecc-key-07.txt │ │ │ │ ├── draft-ietf-dnsext-interop3597-02.txt │ │ │ │ ├── draft-ietf-dnsext-rfc2671bis-edns0-05.txt │ │ │ │ ├── draft-ietf-dnsext-rfc2672bis-dname-19.txt │ │ │ │ ├── draft-ietf-dnsext-rfc3597-bis-02.txt │ │ │ │ ├── draft-ietf-dnsext-tsig-md5-deprecated-03.txt │ │ │ │ ├── draft-ietf-dnsop-bad-dns-res-05.txt │ │ │ │ ├── draft-ietf-dnsop-dnssec-key-timing-02.txt │ │ │ │ ├── draft-ietf-dnsop-dnssec-trust-history-01.txt │ │ │ │ ├── draft-ietf-dnsop-inaddr-required-07.txt │ │ │ │ ├── draft-ietf-dnsop-name-server-management-reqs-02.txt │ │ │ │ ├── draft-ietf-dnsop-respsize-06.txt │ │ │ │ ├── draft-kato-dnsop-local-zones-00.txt │ │ │ │ ├── draft-kerr-ixfr-only-01.txt │ │ │ │ ├── draft-mekking-dnsop-auto-cpsync-00.txt │ │ │ │ ├── draft-yao-dnsext-bname-04.txt │ │ │ │ └── update │ │ │ ├── misc │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dnssec │ │ │ │ ├── format-options.pl │ │ │ │ ├── ipv6 │ │ │ │ ├── migration │ │ │ │ ├── migration-4to9 │ │ │ │ ├── options │ │ │ │ ├── rfc-compliance │ │ │ │ ├── roadmap │ │ │ │ ├── sdb │ │ │ │ └── sort-options.pl │ │ │ ├── rfc │ │ │ │ ├── fetch │ │ │ │ ├── index │ │ │ │ ├── rfc1032.txt │ │ │ │ ├── rfc1033.txt │ │ │ │ ├── rfc1034.txt │ │ │ │ ├── rfc1035.txt │ │ │ │ ├── rfc1101.txt │ │ │ │ ├── rfc1122.txt │ │ │ │ ├── rfc1123.txt │ │ │ │ ├── rfc1183.txt │ │ │ │ ├── rfc1348.txt │ │ │ │ ├── rfc1535.txt │ │ │ │ ├── rfc1536.txt │ │ │ │ ├── rfc1537.txt │ │ │ │ ├── rfc1591.txt │ │ │ │ ├── rfc1611.txt │ │ │ │ ├── rfc1612.txt │ │ │ │ ├── rfc1706.txt │ │ │ │ ├── rfc1712.txt │ │ │ │ ├── rfc1750.txt │ │ │ │ ├── rfc1876.txt │ │ │ │ ├── rfc1886.txt │ │ │ │ ├── rfc1912.txt │ │ │ │ ├── rfc1982.txt │ │ │ │ ├── rfc1995.txt │ │ │ │ ├── rfc1996.txt │ │ │ │ ├── rfc2052.txt │ │ │ │ ├── rfc2104.txt │ │ │ │ ├── rfc2119.txt │ │ │ │ ├── rfc2133.txt │ │ │ │ ├── rfc2136.txt │ │ │ │ ├── rfc2137.txt │ │ │ │ ├── rfc2163.txt │ │ │ │ ├── rfc2168.txt │ │ │ │ ├── rfc2181.txt │ │ │ │ ├── rfc2230.txt │ │ │ │ ├── rfc2308.txt │ │ │ │ ├── rfc2317.txt │ │ │ │ ├── rfc2373.txt │ │ │ │ ├── rfc2374.txt │ │ │ │ ├── rfc2375.txt │ │ │ │ ├── rfc2418.txt │ │ │ │ ├── rfc2535.txt │ │ │ │ ├── rfc2536.txt │ │ │ │ ├── rfc2537.txt │ │ │ │ ├── rfc2538.txt │ │ │ │ ├── rfc2539.txt │ │ │ │ ├── rfc2540.txt │ │ │ │ ├── rfc2541.txt │ │ │ │ ├── rfc2553.txt │ │ │ │ ├── rfc2671.txt │ │ │ │ ├── rfc2672.txt │ │ │ │ ├── rfc2673.txt │ │ │ │ ├── rfc2782.txt │ │ │ │ ├── rfc2825.txt │ │ │ │ ├── rfc2826.txt │ │ │ │ ├── rfc2845.txt │ │ │ │ ├── rfc2874.txt │ │ │ │ ├── rfc2915.txt │ │ │ │ ├── rfc2929.txt │ │ │ │ ├── rfc2930.txt │ │ │ │ ├── rfc2931.txt │ │ │ │ ├── rfc3007.txt │ │ │ │ ├── rfc3008.txt │ │ │ │ ├── rfc3071.txt │ │ │ │ ├── rfc3090.txt │ │ │ │ ├── rfc3110.txt │ │ │ │ ├── rfc3123.txt │ │ │ │ ├── rfc3152.txt │ │ │ │ ├── rfc3197.txt │ │ │ │ ├── rfc3225.txt │ │ │ │ ├── rfc3226.txt │ │ │ │ ├── rfc3258.txt │ │ │ │ ├── rfc3363.txt │ │ │ │ ├── rfc3364.txt │ │ │ │ ├── rfc3425.txt │ │ │ │ ├── rfc3445.txt │ │ │ │ ├── rfc3467.txt │ │ │ │ ├── rfc3490.txt │ │ │ │ ├── rfc3491.txt │ │ │ │ ├── rfc3492.txt │ │ │ │ ├── rfc3493.txt │ │ │ │ ├── rfc3513.txt │ │ │ │ ├── rfc3596.txt │ │ │ │ ├── rfc3597.txt │ │ │ │ ├── rfc3645.txt │ │ │ │ ├── rfc3655.txt │ │ │ │ ├── rfc3658.txt │ │ │ │ ├── rfc3755.txt │ │ │ │ ├── rfc3757.txt │ │ │ │ ├── rfc3833.txt │ │ │ │ ├── rfc3845.txt │ │ │ │ ├── rfc3901.txt │ │ │ │ ├── rfc4025.txt │ │ │ │ ├── rfc4033.txt │ │ │ │ ├── rfc4034.txt │ │ │ │ ├── rfc4035.txt │ │ │ │ ├── rfc4074.txt │ │ │ │ ├── rfc4159.txt │ │ │ │ ├── rfc4193.txt │ │ │ │ ├── rfc4255.txt │ │ │ │ ├── rfc4294.txt │ │ │ │ ├── rfc4339.txt │ │ │ │ ├── rfc4343.txt │ │ │ │ ├── rfc4367.txt │ │ │ │ ├── rfc4398.txt │ │ │ │ ├── rfc4408.txt │ │ │ │ ├── rfc4431.txt │ │ │ │ ├── rfc4470.txt │ │ │ │ ├── rfc4471.txt │ │ │ │ ├── rfc4472.txt │ │ │ │ ├── rfc4509.txt │ │ │ │ ├── rfc4634.txt │ │ │ │ ├── rfc4635.txt │ │ │ │ ├── rfc4641.txt │ │ │ │ ├── rfc4648.txt │ │ │ │ ├── rfc4697.txt │ │ │ │ ├── rfc4701.txt │ │ │ │ ├── rfc4892.txt │ │ │ │ ├── rfc4955.txt │ │ │ │ ├── rfc4956.txt │ │ │ │ ├── rfc5001.txt │ │ │ │ ├── rfc5011.txt │ │ │ │ ├── rfc5155.txt │ │ │ │ ├── rfc5205.txt │ │ │ │ ├── rfc5452.txt │ │ │ │ ├── rfc5507.txt │ │ │ │ ├── rfc5625.txt │ │ │ │ ├── rfc5702.txt │ │ │ │ ├── rfc5933.txt │ │ │ │ ├── rfc6303.txt │ │ │ │ └── rfc952.txt │ │ │ └── xsl │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── copyright.xsl │ │ │ │ ├── isc-docbook-chunk.xsl │ │ │ │ ├── isc-docbook-chunk.xsl.in │ │ │ │ ├── isc-docbook-html.xsl │ │ │ │ ├── isc-docbook-html.xsl.in │ │ │ │ ├── isc-docbook-latex-mappings.xml │ │ │ │ ├── isc-docbook-latex.xsl │ │ │ │ ├── isc-docbook-latex.xsl.in │ │ │ │ ├── isc-docbook-text.xsl │ │ │ │ ├── isc-manpage.xsl │ │ │ │ ├── isc-manpage.xsl.in │ │ │ │ └── pre-latex.xsl │ │ ├── docutil │ │ │ ├── HTML_COPYRIGHT │ │ │ ├── MAN_COPYRIGHT │ │ │ ├── patch-db2latex-duplicate-template-bug │ │ │ ├── patch-db2latex-nested-param-bug │ │ │ └── patch-db2latex-xsltproc-title-bug │ │ ├── install-sh │ │ ├── isc-config.sh │ │ ├── isc-config.sh.1 │ │ ├── isc-config.sh.docbook │ │ ├── isc-config.sh.html │ │ ├── isc-config.sh.in │ │ ├── lib │ │ │ ├── Atffile │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── bind9 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── api │ │ │ │ ├── check.c │ │ │ │ ├── getaddresses.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── bind9 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── check.h │ │ │ │ │ │ ├── getaddresses.h │ │ │ │ │ │ └── version.h │ │ │ │ ├── version.c │ │ │ │ └── win32 │ │ │ │ │ ├── DLLMain.c │ │ │ │ │ ├── libbind9.def │ │ │ │ │ ├── libbind9.dsp │ │ │ │ │ ├── libbind9.dsw │ │ │ │ │ ├── libbind9.mak │ │ │ │ │ └── version.c │ │ │ ├── dns │ │ │ │ ├── Atffile │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── acache.c │ │ │ │ ├── acl.c │ │ │ │ ├── adb.c │ │ │ │ ├── api │ │ │ │ ├── byaddr.c │ │ │ │ ├── cache.c │ │ │ │ ├── callbacks.c │ │ │ │ ├── client.c │ │ │ │ ├── compress.c │ │ │ │ ├── db.c │ │ │ │ ├── dbiterator.c │ │ │ │ ├── dbtable.c │ │ │ │ ├── diff.c │ │ │ │ ├── dispatch.c │ │ │ │ ├── dlz.c │ │ │ │ ├── dns64.c │ │ │ │ ├── dnssec.c │ │ │ │ ├── ds.c │ │ │ │ ├── dst_api.c │ │ │ │ ├── dst_internal.h │ │ │ │ ├── dst_lib.c │ │ │ │ ├── dst_openssl.h │ │ │ │ ├── dst_parse.c │ │ │ │ ├── dst_parse.h │ │ │ │ ├── dst_result.c │ │ │ │ ├── ecdb.c │ │ │ │ ├── forward.c │ │ │ │ ├── gen-unix.h │ │ │ │ ├── gen-win32.h │ │ │ │ ├── gen.c │ │ │ │ ├── gssapi_link.c │ │ │ │ ├── gssapictx.c │ │ │ │ ├── hmac_link.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dns │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── acache.h │ │ │ │ │ │ ├── acl.h │ │ │ │ │ │ ├── adb.h │ │ │ │ │ │ ├── bit.h │ │ │ │ │ │ ├── byaddr.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── callbacks.h │ │ │ │ │ │ ├── cert.h │ │ │ │ │ │ ├── client.h │ │ │ │ │ │ ├── compress.h │ │ │ │ │ │ ├── db.h │ │ │ │ │ │ ├── dbiterator.h │ │ │ │ │ │ ├── dbtable.h │ │ │ │ │ │ ├── diff.h │ │ │ │ │ │ ├── dispatch.h │ │ │ │ │ │ ├── dlz.h │ │ │ │ │ │ ├── dlz_dlopen.h │ │ │ │ │ │ ├── dns64.h │ │ │ │ │ │ ├── dnssec.h │ │ │ │ │ │ ├── ds.h │ │ │ │ │ │ ├── ecdb.h │ │ │ │ │ │ ├── events.h │ │ │ │ │ │ ├── fixedname.h │ │ │ │ │ │ ├── forward.h │ │ │ │ │ │ ├── iptable.h │ │ │ │ │ │ ├── journal.h │ │ │ │ │ │ ├── keydata.h │ │ │ │ │ │ ├── keyflags.h │ │ │ │ │ │ ├── keytable.h │ │ │ │ │ │ ├── keyvalues.h │ │ │ │ │ │ ├── lib.h │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ ├── lookup.h │ │ │ │ │ │ ├── master.h │ │ │ │ │ │ ├── masterdump.h │ │ │ │ │ │ ├── message.h │ │ │ │ │ │ ├── name.h │ │ │ │ │ │ ├── ncache.h │ │ │ │ │ │ ├── nsec.h │ │ │ │ │ │ ├── nsec3.h │ │ │ │ │ │ ├── opcode.h │ │ │ │ │ │ ├── order.h │ │ │ │ │ │ ├── peer.h │ │ │ │ │ │ ├── portlist.h │ │ │ │ │ │ ├── private.h │ │ │ │ │ │ ├── rbt.h │ │ │ │ │ │ ├── rcode.h │ │ │ │ │ │ ├── rdata.h │ │ │ │ │ │ ├── rdataclass.h │ │ │ │ │ │ ├── rdatalist.h │ │ │ │ │ │ ├── rdataset.h │ │ │ │ │ │ ├── rdatasetiter.h │ │ │ │ │ │ ├── rdataslab.h │ │ │ │ │ │ ├── rdatatype.h │ │ │ │ │ │ ├── request.h │ │ │ │ │ │ ├── resolver.h │ │ │ │ │ │ ├── result.h │ │ │ │ │ │ ├── rootns.h │ │ │ │ │ │ ├── rpz.h │ │ │ │ │ │ ├── rriterator.h │ │ │ │ │ │ ├── sdb.h │ │ │ │ │ │ ├── sdlz.h │ │ │ │ │ │ ├── secalg.h │ │ │ │ │ │ ├── secproto.h │ │ │ │ │ │ ├── soa.h │ │ │ │ │ │ ├── ssu.h │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ ├── tcpmsg.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── tkey.h │ │ │ │ │ │ ├── tsec.h │ │ │ │ │ │ ├── tsig.h │ │ │ │ │ │ ├── ttl.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── validator.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ ├── view.h │ │ │ │ │ │ ├── xfrin.h │ │ │ │ │ │ ├── zone.h │ │ │ │ │ │ ├── zonekey.h │ │ │ │ │ │ └── zt.h │ │ │ │ │ └── dst │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── dst.h │ │ │ │ │ │ ├── gssapi.h │ │ │ │ │ │ ├── lib.h │ │ │ │ │ │ └── result.h │ │ │ │ ├── iptable.c │ │ │ │ ├── journal.c │ │ │ │ ├── key.c │ │ │ │ ├── keydata.c │ │ │ │ ├── keytable.c │ │ │ │ ├── lib.c │ │ │ │ ├── log.c │ │ │ │ ├── lookup.c │ │ │ │ ├── master.c │ │ │ │ ├── masterdump.c │ │ │ │ ├── message.c │ │ │ │ ├── name.c │ │ │ │ ├── ncache.c │ │ │ │ ├── nsec.c │ │ │ │ ├── nsec3.c │ │ │ │ ├── openssl_link.c │ │ │ │ ├── openssldh_link.c │ │ │ │ ├── openssldsa_link.c │ │ │ │ ├── opensslgost_link.c │ │ │ │ ├── opensslrsa_link.c │ │ │ │ ├── order.c │ │ │ │ ├── peer.c │ │ │ │ ├── portlist.c │ │ │ │ ├── private.c │ │ │ │ ├── rbt.c │ │ │ │ ├── rbtdb.c │ │ │ │ ├── rbtdb.h │ │ │ │ ├── rbtdb64.c │ │ │ │ ├── rbtdb64.h │ │ │ │ ├── rcode.c │ │ │ │ ├── rdata.c │ │ │ │ ├── rdata │ │ │ │ │ ├── any_255 │ │ │ │ │ │ ├── tsig_250.c │ │ │ │ │ │ └── tsig_250.h │ │ │ │ │ ├── ch_3 │ │ │ │ │ │ ├── a_1.c │ │ │ │ │ │ └── a_1.h │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── afsdb_18.c │ │ │ │ │ │ ├── afsdb_18.h │ │ │ │ │ │ ├── cert_37.c │ │ │ │ │ │ ├── cert_37.h │ │ │ │ │ │ ├── cname_5.c │ │ │ │ │ │ ├── cname_5.h │ │ │ │ │ │ ├── dlv_32769.c │ │ │ │ │ │ ├── dlv_32769.h │ │ │ │ │ │ ├── dname_39.c │ │ │ │ │ │ ├── dname_39.h │ │ │ │ │ │ ├── dnskey_48.c │ │ │ │ │ │ ├── dnskey_48.h │ │ │ │ │ │ ├── ds_43.c │ │ │ │ │ │ ├── ds_43.h │ │ │ │ │ │ ├── gpos_27.c │ │ │ │ │ │ ├── gpos_27.h │ │ │ │ │ │ ├── hinfo_13.c │ │ │ │ │ │ ├── hinfo_13.h │ │ │ │ │ │ ├── hip_55.c │ │ │ │ │ │ ├── hip_55.h │ │ │ │ │ │ ├── ipseckey_45.c │ │ │ │ │ │ ├── ipseckey_45.h │ │ │ │ │ │ ├── isdn_20.c │ │ │ │ │ │ ├── isdn_20.h │ │ │ │ │ │ ├── key_25.c │ │ │ │ │ │ ├── key_25.h │ │ │ │ │ │ ├── keydata_65533.c │ │ │ │ │ │ ├── keydata_65533.h │ │ │ │ │ │ ├── loc_29.c │ │ │ │ │ │ ├── loc_29.h │ │ │ │ │ │ ├── mb_7.c │ │ │ │ │ │ ├── mb_7.h │ │ │ │ │ │ ├── md_3.c │ │ │ │ │ │ ├── md_3.h │ │ │ │ │ │ ├── mf_4.c │ │ │ │ │ │ ├── mf_4.h │ │ │ │ │ │ ├── mg_8.c │ │ │ │ │ │ ├── mg_8.h │ │ │ │ │ │ ├── minfo_14.c │ │ │ │ │ │ ├── minfo_14.h │ │ │ │ │ │ ├── mr_9.c │ │ │ │ │ │ ├── mr_9.h │ │ │ │ │ │ ├── mx_15.c │ │ │ │ │ │ ├── mx_15.h │ │ │ │ │ │ ├── ns_2.c │ │ │ │ │ │ ├── ns_2.h │ │ │ │ │ │ ├── nsec3_50.c │ │ │ │ │ │ ├── nsec3_50.h │ │ │ │ │ │ ├── nsec3param_51.c │ │ │ │ │ │ ├── nsec3param_51.h │ │ │ │ │ │ ├── nsec_47.c │ │ │ │ │ │ ├── nsec_47.h │ │ │ │ │ │ ├── null_10.c │ │ │ │ │ │ ├── null_10.h │ │ │ │ │ │ ├── nxt_30.c │ │ │ │ │ │ ├── nxt_30.h │ │ │ │ │ │ ├── opt_41.c │ │ │ │ │ │ ├── opt_41.h │ │ │ │ │ │ ├── proforma.c │ │ │ │ │ │ ├── proforma.h │ │ │ │ │ │ ├── ptr_12.c │ │ │ │ │ │ ├── ptr_12.h │ │ │ │ │ │ ├── rp_17.c │ │ │ │ │ │ ├── rp_17.h │ │ │ │ │ │ ├── rrsig_46.c │ │ │ │ │ │ ├── rrsig_46.h │ │ │ │ │ │ ├── rt_21.c │ │ │ │ │ │ ├── rt_21.h │ │ │ │ │ │ ├── sig_24.c │ │ │ │ │ │ ├── sig_24.h │ │ │ │ │ │ ├── soa_6.c │ │ │ │ │ │ ├── soa_6.h │ │ │ │ │ │ ├── spf_99.c │ │ │ │ │ │ ├── spf_99.h │ │ │ │ │ │ ├── sshfp_44.c │ │ │ │ │ │ ├── sshfp_44.h │ │ │ │ │ │ ├── tkey_249.c │ │ │ │ │ │ ├── tkey_249.h │ │ │ │ │ │ ├── txt_16.c │ │ │ │ │ │ ├── txt_16.h │ │ │ │ │ │ ├── unspec_103.c │ │ │ │ │ │ ├── unspec_103.h │ │ │ │ │ │ ├── x25_19.c │ │ │ │ │ │ ├── x25_19.h │ │ │ │ │ │ ├── xia_65532.c │ │ │ │ │ │ └── xia_65532.h │ │ │ │ │ ├── hs_4 │ │ │ │ │ │ ├── a_1.c │ │ │ │ │ │ └── a_1.h │ │ │ │ │ ├── in_1 │ │ │ │ │ │ ├── a6_38.c │ │ │ │ │ │ ├── a6_38.h │ │ │ │ │ │ ├── a_1.c │ │ │ │ │ │ ├── a_1.h │ │ │ │ │ │ ├── aaaa_28.c │ │ │ │ │ │ ├── aaaa_28.h │ │ │ │ │ │ ├── apl_42.c │ │ │ │ │ │ ├── apl_42.h │ │ │ │ │ │ ├── dhcid_49.c │ │ │ │ │ │ ├── dhcid_49.h │ │ │ │ │ │ ├── kx_36.c │ │ │ │ │ │ ├── kx_36.h │ │ │ │ │ │ ├── naptr_35.c │ │ │ │ │ │ ├── naptr_35.h │ │ │ │ │ │ ├── nsap-ptr_23.c │ │ │ │ │ │ ├── nsap-ptr_23.h │ │ │ │ │ │ ├── nsap_22.c │ │ │ │ │ │ ├── nsap_22.h │ │ │ │ │ │ ├── px_26.c │ │ │ │ │ │ ├── px_26.h │ │ │ │ │ │ ├── srv_33.c │ │ │ │ │ │ ├── srv_33.h │ │ │ │ │ │ ├── wks_11.c │ │ │ │ │ │ └── wks_11.h │ │ │ │ │ ├── rdatastructpre.h │ │ │ │ │ └── rdatastructsuf.h │ │ │ │ ├── rdatalist.c │ │ │ │ ├── rdatalist_p.h │ │ │ │ ├── rdataset.c │ │ │ │ ├── rdatasetiter.c │ │ │ │ ├── rdataslab.c │ │ │ │ ├── request.c │ │ │ │ ├── resolver.c │ │ │ │ ├── result.c │ │ │ │ ├── rootns.c │ │ │ │ ├── rpz.c │ │ │ │ ├── rriterator.c │ │ │ │ ├── sdb.c │ │ │ │ ├── sdlz.c │ │ │ │ ├── soa.c │ │ │ │ ├── spnego.asn1 │ │ │ │ ├── spnego.c │ │ │ │ ├── spnego.h │ │ │ │ ├── spnego_asn1.c │ │ │ │ ├── spnego_asn1.pl │ │ │ │ ├── ssu.c │ │ │ │ ├── ssu_external.c │ │ │ │ ├── stats.c │ │ │ │ ├── tcpmsg.c │ │ │ │ ├── tests │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dnstest.c │ │ │ │ │ ├── dnstest.h │ │ │ │ │ ├── master_test.c │ │ │ │ │ ├── testdata │ │ │ │ │ │ └── master │ │ │ │ │ │ │ ├── master1.data │ │ │ │ │ │ │ ├── master10.data │ │ │ │ │ │ │ ├── master11.data │ │ │ │ │ │ │ ├── master2.data │ │ │ │ │ │ │ ├── master3.data │ │ │ │ │ │ │ ├── master4.data │ │ │ │ │ │ │ ├── master5.data │ │ │ │ │ │ │ ├── master6.data │ │ │ │ │ │ │ ├── master7.data │ │ │ │ │ │ │ ├── master8.data │ │ │ │ │ │ │ └── master9.data │ │ │ │ │ ├── time_test.c │ │ │ │ │ └── zonemgr_test.c │ │ │ │ ├── time.c │ │ │ │ ├── timer.c │ │ │ │ ├── tkey.c │ │ │ │ ├── tsec.c │ │ │ │ ├── tsig.c │ │ │ │ ├── ttl.c │ │ │ │ ├── validator.c │ │ │ │ ├── version.c │ │ │ │ ├── view.c │ │ │ │ ├── win32 │ │ │ │ │ ├── DLLMain.c │ │ │ │ │ ├── gen.dsp │ │ │ │ │ ├── gen.dsw │ │ │ │ │ ├── gen.mak │ │ │ │ │ ├── libdns.def │ │ │ │ │ ├── libdns.dsp │ │ │ │ │ ├── libdns.dsw │ │ │ │ │ ├── libdns.mak │ │ │ │ │ └── version.c │ │ │ │ ├── xfrin.c │ │ │ │ ├── zone.c │ │ │ │ ├── zonekey.c │ │ │ │ └── zt.c │ │ │ ├── export │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── dns │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── dns │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ └── dst │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── Makefile.in │ │ │ │ ├── irs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── irs │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── Makefile.in │ │ │ │ ├── isc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── bind9.h │ │ │ │ │ ├── nls │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ ├── nothreads │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── include │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── isc │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ ├── pthreads │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── include │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── isc │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ └── unix │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── Makefile.in │ │ │ │ ├── isccfg │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isccfg │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── Makefile.in │ │ │ │ └── samples │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile-postinstall │ │ │ │ │ ├── Makefile-postinstall.in │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── nsprobe.c │ │ │ │ │ ├── sample-async.c │ │ │ │ │ ├── sample-gai.c │ │ │ │ │ ├── sample-request.c │ │ │ │ │ ├── sample-update.c │ │ │ │ │ └── sample.c │ │ │ ├── irs │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── api │ │ │ │ ├── context.c │ │ │ │ ├── dnsconf.c │ │ │ │ ├── gai_strerror.c │ │ │ │ ├── getaddrinfo.c │ │ │ │ ├── getnameinfo.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── irs │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── context.h │ │ │ │ │ │ ├── dnsconf.h │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ ├── netdb.h.in │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── platform.h.in │ │ │ │ │ │ ├── resconf.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── version.h │ │ │ │ ├── resconf.c │ │ │ │ └── version.c │ │ │ ├── isc │ │ │ │ ├── Atffile │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── alpha │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── atomic.h │ │ │ │ ├── api │ │ │ │ ├── app_api.c │ │ │ │ ├── assertions.c │ │ │ │ ├── backtrace-emptytbl.c │ │ │ │ ├── backtrace.c │ │ │ │ ├── base32.c │ │ │ │ ├── base64.c │ │ │ │ ├── bitstring.c │ │ │ │ ├── buffer.c │ │ │ │ ├── bufferlist.c │ │ │ │ ├── commandline.c │ │ │ │ ├── entropy.c │ │ │ │ ├── error.c │ │ │ │ ├── event.c │ │ │ │ ├── fsaccess.c │ │ │ │ ├── hash.c │ │ │ │ ├── heap.c │ │ │ │ ├── hex.c │ │ │ │ ├── hmacmd5.c │ │ │ │ ├── hmacsha.c │ │ │ │ ├── httpd.c │ │ │ │ ├── ia64 │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── atomic.h │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── app.h │ │ │ │ │ │ ├── assertions.h │ │ │ │ │ │ ├── backtrace.h │ │ │ │ │ │ ├── base32.h │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── bind9.h │ │ │ │ │ │ ├── bitstring.h │ │ │ │ │ │ ├── boolean.h │ │ │ │ │ │ ├── buffer.h │ │ │ │ │ │ ├── bufferlist.h │ │ │ │ │ │ ├── commandline.h │ │ │ │ │ │ ├── entropy.h │ │ │ │ │ │ ├── error.h │ │ │ │ │ │ ├── event.h │ │ │ │ │ │ ├── eventclass.h │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ ├── formatcheck.h │ │ │ │ │ │ ├── fsaccess.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── heap.h │ │ │ │ │ │ ├── hex.h │ │ │ │ │ │ ├── hmacmd5.h │ │ │ │ │ │ ├── hmacsha.h │ │ │ │ │ │ ├── httpd.h │ │ │ │ │ │ ├── interfaceiter.h │ │ │ │ │ │ ├── ipv6.h │ │ │ │ │ │ ├── iterated_hash.h │ │ │ │ │ │ ├── lang.h │ │ │ │ │ │ ├── lex.h │ │ │ │ │ │ ├── lfsr.h │ │ │ │ │ │ ├── lib.h │ │ │ │ │ │ ├── list.h │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ ├── magic.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── msgcat.h │ │ │ │ │ │ ├── msgs.h │ │ │ │ │ │ ├── mutexblock.h │ │ │ │ │ │ ├── namespace.h │ │ │ │ │ │ ├── netaddr.h │ │ │ │ │ │ ├── netscope.h │ │ │ │ │ │ ├── ondestroy.h │ │ │ │ │ │ ├── os.h │ │ │ │ │ │ ├── parseint.h │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── platform.h.in │ │ │ │ │ │ ├── portset.h │ │ │ │ │ │ ├── print.h │ │ │ │ │ │ ├── quota.h │ │ │ │ │ │ ├── radix.h │ │ │ │ │ │ ├── random.h │ │ │ │ │ │ ├── ratelimiter.h │ │ │ │ │ │ ├── refcount.h │ │ │ │ │ │ ├── region.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── result.h │ │ │ │ │ │ ├── resultclass.h │ │ │ │ │ │ ├── rwlock.h │ │ │ │ │ │ ├── serial.h │ │ │ │ │ │ ├── sha1.h │ │ │ │ │ │ ├── sha2.h │ │ │ │ │ │ ├── sockaddr.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ ├── stdio.h │ │ │ │ │ │ ├── stdlib.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── symtab.h │ │ │ │ │ │ ├── task.h │ │ │ │ │ │ ├── taskpool.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ └── xml.h │ │ │ │ ├── inet_aton.c │ │ │ │ ├── inet_ntop.c │ │ │ │ ├── inet_pton.c │ │ │ │ ├── iterated_hash.c │ │ │ │ ├── lex.c │ │ │ │ ├── lfsr.c │ │ │ │ ├── lib.c │ │ │ │ ├── log.c │ │ │ │ ├── md5.c │ │ │ │ ├── mem.c │ │ │ │ ├── mem_api.c │ │ │ │ ├── mips │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── atomic.h │ │ │ │ ├── mutexblock.c │ │ │ │ ├── netaddr.c │ │ │ │ ├── netscope.c │ │ │ │ ├── nls │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── msgcat.c │ │ │ │ ├── noatomic │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── atomic.h │ │ │ │ ├── nothreads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── condition.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── condition.h │ │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ │ ├── once.h │ │ │ │ │ │ │ └── thread.h │ │ │ │ │ ├── mutex.c │ │ │ │ │ └── thread.c │ │ │ │ ├── ondestroy.c │ │ │ │ ├── parseint.c │ │ │ │ ├── portset.c │ │ │ │ ├── powerpc │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── atomic.h │ │ │ │ ├── print.c │ │ │ │ ├── pthreads │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── condition.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── condition.h │ │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ │ ├── once.h │ │ │ │ │ │ │ └── thread.h │ │ │ │ │ ├── mutex.c │ │ │ │ │ └── thread.c │ │ │ │ ├── quota.c │ │ │ │ ├── radix.c │ │ │ │ ├── random.c │ │ │ │ ├── ratelimiter.c │ │ │ │ ├── refcount.c │ │ │ │ ├── region.c │ │ │ │ ├── result.c │ │ │ │ ├── rwlock.c │ │ │ │ ├── serial.c │ │ │ │ ├── sha1.c │ │ │ │ ├── sha2.c │ │ │ │ ├── sockaddr.c │ │ │ │ ├── socket_api.c │ │ │ │ ├── sparc64 │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── atomic.h │ │ │ │ ├── stats.c │ │ │ │ ├── string.c │ │ │ │ ├── strtoul.c │ │ │ │ ├── symtab.c │ │ │ │ ├── task.c │ │ │ │ ├── task_api.c │ │ │ │ ├── task_p.h │ │ │ │ ├── taskpool.c │ │ │ │ ├── tests │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── isctest.c │ │ │ │ │ ├── isctest.h │ │ │ │ │ └── taskpool_test.c │ │ │ │ ├── timer.c │ │ │ │ ├── timer_api.c │ │ │ │ ├── timer_p.h │ │ │ │ ├── unix │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── app.c │ │ │ │ │ ├── dir.c │ │ │ │ │ ├── entropy.c │ │ │ │ │ ├── errno2result.c │ │ │ │ │ ├── errno2result.h │ │ │ │ │ ├── file.c │ │ │ │ │ ├── fsaccess.c │ │ │ │ │ ├── ifiter_getifaddrs.c │ │ │ │ │ ├── ifiter_ioctl.c │ │ │ │ │ ├── ifiter_sysctl.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── dir.h │ │ │ │ │ │ │ ├── int.h │ │ │ │ │ │ │ ├── keyboard.h │ │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ │ ├── offset.h │ │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ │ ├── stdtime.h │ │ │ │ │ │ │ ├── strerror.h │ │ │ │ │ │ │ ├── syslog.h │ │ │ │ │ │ │ └── time.h │ │ │ │ │ ├── interfaceiter.c │ │ │ │ │ ├── ipv6.c │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── net.c │ │ │ │ │ ├── os.c │ │ │ │ │ ├── resource.c │ │ │ │ │ ├── socket.c │ │ │ │ │ ├── socket_p.h │ │ │ │ │ ├── stdio.c │ │ │ │ │ ├── stdtime.c │ │ │ │ │ ├── strerror.c │ │ │ │ │ ├── syslog.c │ │ │ │ │ └── time.c │ │ │ │ ├── version.c │ │ │ │ ├── win32 │ │ │ │ │ ├── DLLMain.c │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── app.c │ │ │ │ │ ├── condition.c │ │ │ │ │ ├── dir.c │ │ │ │ │ ├── entropy.c │ │ │ │ │ ├── errno2result.c │ │ │ │ │ ├── errno2result.h │ │ │ │ │ ├── file.c │ │ │ │ │ ├── fsaccess.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── bind_registry.h │ │ │ │ │ │ │ ├── bindevt.h │ │ │ │ │ │ │ ├── condition.h │ │ │ │ │ │ │ ├── dir.h │ │ │ │ │ │ │ ├── int.h │ │ │ │ │ │ │ ├── ipv6.h │ │ │ │ │ │ │ ├── keyboard.h │ │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ │ ├── ntgroups.h │ │ │ │ │ │ │ ├── ntpaths.h │ │ │ │ │ │ │ ├── offset.h │ │ │ │ │ │ │ ├── once.h │ │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ │ ├── stdtime.h │ │ │ │ │ │ │ ├── strerror.h │ │ │ │ │ │ │ ├── syslog.h │ │ │ │ │ │ │ ├── thread.h │ │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ │ └── win32os.h │ │ │ │ │ ├── interfaceiter.c │ │ │ │ │ ├── ipv6.c │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── libgen.h │ │ │ │ │ ├── libisc.def │ │ │ │ │ ├── libisc.dsp │ │ │ │ │ ├── libisc.dsw │ │ │ │ │ ├── libisc.mak │ │ │ │ │ ├── net.c │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── ntgroups.c │ │ │ │ │ ├── ntpaths.c │ │ │ │ │ ├── once.c │ │ │ │ │ ├── os.c │ │ │ │ │ ├── resource.c │ │ │ │ │ ├── socket.c │ │ │ │ │ ├── stdio.c │ │ │ │ │ ├── stdtime.c │ │ │ │ │ ├── strerror.c │ │ │ │ │ ├── syslog.c │ │ │ │ │ ├── syslog.h │ │ │ │ │ ├── thread.c │ │ │ │ │ ├── time.c │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── version.c │ │ │ │ │ └── win32os.c │ │ │ │ ├── x86_32 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── isc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── atomic.h │ │ │ │ └── x86_64 │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isc │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── atomic.h │ │ │ ├── isccc │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── alist.c │ │ │ │ ├── api │ │ │ │ ├── base64.c │ │ │ │ ├── cc.c │ │ │ │ ├── ccmsg.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isccc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── alist.h │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ ├── ccmsg.h │ │ │ │ │ │ ├── events.h │ │ │ │ │ │ ├── lib.h │ │ │ │ │ │ ├── result.h │ │ │ │ │ │ ├── sexpr.h │ │ │ │ │ │ ├── symtab.h │ │ │ │ │ │ ├── symtype.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ └── version.h │ │ │ │ ├── lib.c │ │ │ │ ├── result.c │ │ │ │ ├── sexpr.c │ │ │ │ ├── symtab.c │ │ │ │ ├── version.c │ │ │ │ └── win32 │ │ │ │ │ ├── DLLMain.c │ │ │ │ │ ├── libisccc.def │ │ │ │ │ ├── libisccc.dsp │ │ │ │ │ ├── libisccc.dsw │ │ │ │ │ ├── libisccc.mak │ │ │ │ │ └── version.c │ │ │ ├── isccfg │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclconf.c │ │ │ │ ├── api │ │ │ │ ├── dnsconf.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── isccfg │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── aclconf.h │ │ │ │ │ │ ├── cfg.h │ │ │ │ │ │ ├── dnsconf.h │ │ │ │ │ │ ├── grammar.h │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ ├── namedconf.h │ │ │ │ │ │ └── version.h │ │ │ │ ├── log.c │ │ │ │ ├── namedconf.c │ │ │ │ ├── parser.c │ │ │ │ ├── version.c │ │ │ │ └── win32 │ │ │ │ │ ├── DLLMain.c │ │ │ │ │ ├── libisccfg.def │ │ │ │ │ ├── libisccfg.dsp │ │ │ │ │ ├── libisccfg.dsw │ │ │ │ │ ├── libisccfg.mak │ │ │ │ │ └── version.c │ │ │ ├── lwres │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── api │ │ │ │ ├── assert_p.h │ │ │ │ ├── context.c │ │ │ │ ├── context_p.h │ │ │ │ ├── gai_strerror.c │ │ │ │ ├── getaddrinfo.c │ │ │ │ ├── gethost.c │ │ │ │ ├── getipnode.c │ │ │ │ ├── getnameinfo.c │ │ │ │ ├── getrrset.c │ │ │ │ ├── herror.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── lwres │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── context.h │ │ │ │ │ │ ├── int.h │ │ │ │ │ │ ├── ipv6.h │ │ │ │ │ │ ├── lang.h │ │ │ │ │ │ ├── list.h │ │ │ │ │ │ ├── lwbuffer.h │ │ │ │ │ │ ├── lwpacket.h │ │ │ │ │ │ ├── lwres.h │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ ├── netdb.h.in │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── platform.h.in │ │ │ │ │ │ ├── result.h │ │ │ │ │ │ ├── stdlib.h │ │ │ │ │ │ └── version.h │ │ │ │ ├── lwbuffer.c │ │ │ │ ├── lwconfig.c │ │ │ │ ├── lwinetaton.c │ │ │ │ ├── lwinetntop.c │ │ │ │ ├── lwinetpton.c │ │ │ │ ├── lwpacket.c │ │ │ │ ├── lwres_gabn.c │ │ │ │ ├── lwres_gnba.c │ │ │ │ ├── lwres_grbn.c │ │ │ │ ├── lwres_noop.c │ │ │ │ ├── lwresutil.c │ │ │ │ ├── man │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── lwres.3 │ │ │ │ │ ├── lwres.docbook │ │ │ │ │ ├── lwres.html │ │ │ │ │ ├── lwres_buffer.3 │ │ │ │ │ ├── lwres_buffer.docbook │ │ │ │ │ ├── lwres_buffer.html │ │ │ │ │ ├── lwres_config.3 │ │ │ │ │ ├── lwres_config.docbook │ │ │ │ │ ├── lwres_config.html │ │ │ │ │ ├── lwres_context.3 │ │ │ │ │ ├── lwres_context.docbook │ │ │ │ │ ├── lwres_context.html │ │ │ │ │ ├── lwres_gabn.3 │ │ │ │ │ ├── lwres_gabn.docbook │ │ │ │ │ ├── lwres_gabn.html │ │ │ │ │ ├── lwres_gai_strerror.3 │ │ │ │ │ ├── lwres_gai_strerror.docbook │ │ │ │ │ ├── lwres_gai_strerror.html │ │ │ │ │ ├── lwres_getaddrinfo.3 │ │ │ │ │ ├── lwres_getaddrinfo.docbook │ │ │ │ │ ├── lwres_getaddrinfo.html │ │ │ │ │ ├── lwres_gethostent.3 │ │ │ │ │ ├── lwres_gethostent.docbook │ │ │ │ │ ├── lwres_gethostent.html │ │ │ │ │ ├── lwres_getipnode.3 │ │ │ │ │ ├── lwres_getipnode.docbook │ │ │ │ │ ├── lwres_getipnode.html │ │ │ │ │ ├── lwres_getnameinfo.3 │ │ │ │ │ ├── lwres_getnameinfo.docbook │ │ │ │ │ ├── lwres_getnameinfo.html │ │ │ │ │ ├── lwres_getrrsetbyname.3 │ │ │ │ │ ├── lwres_getrrsetbyname.docbook │ │ │ │ │ ├── lwres_getrrsetbyname.html │ │ │ │ │ ├── lwres_gnba.3 │ │ │ │ │ ├── lwres_gnba.docbook │ │ │ │ │ ├── lwres_gnba.html │ │ │ │ │ ├── lwres_hstrerror.3 │ │ │ │ │ ├── lwres_hstrerror.docbook │ │ │ │ │ ├── lwres_hstrerror.html │ │ │ │ │ ├── lwres_inetntop.3 │ │ │ │ │ ├── lwres_inetntop.docbook │ │ │ │ │ ├── lwres_inetntop.html │ │ │ │ │ ├── lwres_noop.3 │ │ │ │ │ ├── lwres_noop.docbook │ │ │ │ │ ├── lwres_noop.html │ │ │ │ │ ├── lwres_packet.3 │ │ │ │ │ ├── lwres_packet.docbook │ │ │ │ │ ├── lwres_packet.html │ │ │ │ │ ├── lwres_resutil.3 │ │ │ │ │ ├── lwres_resutil.docbook │ │ │ │ │ └── lwres_resutil.html │ │ │ │ ├── print.c │ │ │ │ ├── print_p.h │ │ │ │ ├── strtoul.c │ │ │ │ ├── unix │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── include │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── lwres │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── net.h │ │ │ │ ├── version.c │ │ │ │ └── win32 │ │ │ │ │ ├── DLLMain.c │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── lwres │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── int.h │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ └── platform.h │ │ │ │ │ ├── liblwres.def │ │ │ │ │ ├── liblwres.dsp │ │ │ │ │ ├── liblwres.dsw │ │ │ │ │ ├── liblwres.mak │ │ │ │ │ ├── lwconfig.c │ │ │ │ │ ├── socket.c │ │ │ │ │ └── version.c │ │ │ ├── tests │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── T_testlist.imp │ │ │ │ ├── include │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── tests │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── t_api.h │ │ │ │ └── t_api.c │ │ │ └── win32 │ │ │ │ └── bindevt │ │ │ │ ├── bindevt.c │ │ │ │ ├── bindevt.dsp │ │ │ │ ├── bindevt.dsw │ │ │ │ ├── bindevt.mak │ │ │ │ └── bindevt.mc │ │ ├── libtool │ │ ├── libtool.m4 │ │ ├── ltmain.sh │ │ ├── make │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── includes │ │ │ ├── includes.in │ │ │ ├── mkdep │ │ │ ├── mkdep.in │ │ │ ├── rules │ │ │ └── rules.in │ │ ├── mkinstalldirs │ │ ├── release-notes.css │ │ ├── unit │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── atf-src │ │ │ │ ├── AUTHORS │ │ │ │ ├── Atffile │ │ │ │ ├── COPYING │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── admin │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── check-install.sh │ │ │ │ │ ├── check-style-c.awk │ │ │ │ │ ├── check-style-common.awk │ │ │ │ │ ├── check-style-cpp.awk │ │ │ │ │ ├── check-style-man.awk │ │ │ │ │ ├── check-style-shell.awk │ │ │ │ │ ├── check-style.sh │ │ │ │ │ ├── compile │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ └── missing │ │ │ │ ├── atf-c++.hpp │ │ │ │ ├── atf-c++ │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── atf-c++-api.3 │ │ │ │ │ ├── atf-c++.pc.in │ │ │ │ │ ├── atf_c++_test.cpp │ │ │ │ │ ├── build.cpp │ │ │ │ │ ├── build.hpp │ │ │ │ │ ├── build_test.cpp │ │ │ │ │ ├── check.cpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── check_test.cpp │ │ │ │ │ ├── config.cpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── config_test.cpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── Atffile │ │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ │ ├── application.cpp │ │ │ │ │ │ ├── application.hpp │ │ │ │ │ │ ├── application_test.cpp │ │ │ │ │ │ ├── env.cpp │ │ │ │ │ │ ├── env.hpp │ │ │ │ │ │ ├── env_test.cpp │ │ │ │ │ │ ├── exceptions.cpp │ │ │ │ │ │ ├── exceptions.hpp │ │ │ │ │ │ ├── exceptions_test.cpp │ │ │ │ │ │ ├── expand.cpp │ │ │ │ │ │ ├── expand.hpp │ │ │ │ │ │ ├── expand_test.cpp │ │ │ │ │ │ ├── fs.cpp │ │ │ │ │ │ ├── fs.hpp │ │ │ │ │ │ ├── fs_test.cpp │ │ │ │ │ │ ├── parser.cpp │ │ │ │ │ │ ├── parser.hpp │ │ │ │ │ │ ├── parser_test.cpp │ │ │ │ │ │ ├── process.cpp │ │ │ │ │ │ ├── process.hpp │ │ │ │ │ │ ├── process_test.cpp │ │ │ │ │ │ ├── sanity.hpp │ │ │ │ │ │ ├── sanity_test.cpp │ │ │ │ │ │ ├── test_helpers.cpp │ │ │ │ │ │ ├── test_helpers.hpp │ │ │ │ │ │ ├── text.cpp │ │ │ │ │ │ ├── text.hpp │ │ │ │ │ │ ├── text_test.cpp │ │ │ │ │ │ ├── ui.cpp │ │ │ │ │ │ ├── ui.hpp │ │ │ │ │ │ └── ui_test.cpp │ │ │ │ │ ├── macros.hpp │ │ │ │ │ ├── macros_hpp_test.cpp │ │ │ │ │ ├── macros_test.cpp │ │ │ │ │ ├── pkg_config_test.sh │ │ │ │ │ ├── tests.cpp │ │ │ │ │ ├── tests.hpp │ │ │ │ │ ├── tests_test.cpp │ │ │ │ │ ├── utils.hpp │ │ │ │ │ └── utils_test.cpp │ │ │ │ ├── atf-c.h │ │ │ │ ├── atf-c │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── atf-c-api.3 │ │ │ │ │ ├── atf-c.pc.in │ │ │ │ │ ├── atf_c_test.c │ │ │ │ │ ├── build.c │ │ │ │ │ ├── build.h │ │ │ │ │ ├── build_test.c │ │ │ │ │ ├── check.c │ │ │ │ │ ├── check.h │ │ │ │ │ ├── check_test.c │ │ │ │ │ ├── config.c │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config_test.c │ │ │ │ │ ├── defs.h.in │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── Atffile │ │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ │ ├── dynstr.c │ │ │ │ │ │ ├── dynstr.h │ │ │ │ │ │ ├── dynstr_test.c │ │ │ │ │ │ ├── env.c │ │ │ │ │ │ ├── env.h │ │ │ │ │ │ ├── env_test.c │ │ │ │ │ │ ├── fs.c │ │ │ │ │ │ ├── fs.h │ │ │ │ │ │ ├── fs_test.c │ │ │ │ │ │ ├── list.c │ │ │ │ │ │ ├── list.h │ │ │ │ │ │ ├── list_test.c │ │ │ │ │ │ ├── map.c │ │ │ │ │ │ ├── map.h │ │ │ │ │ │ ├── map_test.c │ │ │ │ │ │ ├── process.c │ │ │ │ │ │ ├── process.h │ │ │ │ │ │ ├── process_helpers.c │ │ │ │ │ │ ├── process_test.c │ │ │ │ │ │ ├── sanity.c │ │ │ │ │ │ ├── sanity.h │ │ │ │ │ │ ├── sanity_test.c │ │ │ │ │ │ ├── test_helpers.c │ │ │ │ │ │ ├── test_helpers.h │ │ │ │ │ │ ├── test_helpers_test.c │ │ │ │ │ │ ├── text.c │ │ │ │ │ │ ├── text.h │ │ │ │ │ │ ├── text_test.c │ │ │ │ │ │ ├── tp_main.c │ │ │ │ │ │ ├── user.c │ │ │ │ │ │ ├── user.h │ │ │ │ │ │ └── user_test.c │ │ │ │ │ ├── error.c │ │ │ │ │ ├── error.h │ │ │ │ │ ├── error_fwd.h │ │ │ │ │ ├── error_test.c │ │ │ │ │ ├── h_build.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── macros_h_test.c │ │ │ │ │ ├── macros_test.c │ │ │ │ │ ├── pkg_config_test.sh │ │ │ │ │ ├── tc.c │ │ │ │ │ ├── tc.h │ │ │ │ │ ├── tc_test.c │ │ │ │ │ ├── tp.c │ │ │ │ │ ├── tp.h │ │ │ │ │ ├── tp_test.c │ │ │ │ │ ├── utils.c │ │ │ │ │ ├── utils.h │ │ │ │ │ └── utils_test.c │ │ │ │ ├── atf-config │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── atf-config.1 │ │ │ │ │ ├── atf-config.cpp │ │ │ │ │ └── integration_test.sh │ │ │ │ ├── atf-report │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── atf-report.1 │ │ │ │ │ ├── atf-report.cpp │ │ │ │ │ ├── fail_helper.cpp │ │ │ │ │ ├── integration_test.sh │ │ │ │ │ ├── misc_helpers.cpp │ │ │ │ │ ├── pass_helper.cpp │ │ │ │ │ ├── reader.cpp │ │ │ │ │ ├── reader.hpp │ │ │ │ │ ├── reader_test.cpp │ │ │ │ │ ├── tests-results.css │ │ │ │ │ ├── tests-results.dtd │ │ │ │ │ └── tests-results.xsl │ │ │ │ ├── atf-run │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── atf-run.1 │ │ │ │ │ ├── atf-run.cpp │ │ │ │ │ ├── atffile.cpp │ │ │ │ │ ├── atffile.hpp │ │ │ │ │ ├── atffile_test.cpp │ │ │ │ │ ├── bad_metadata_helper.c │ │ │ │ │ ├── config.cpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── config_test.cpp │ │ │ │ │ ├── expect_helpers.c │ │ │ │ │ ├── fs.cpp │ │ │ │ │ ├── fs.hpp │ │ │ │ │ ├── fs_test.cpp │ │ │ │ │ ├── integration_test.sh │ │ │ │ │ ├── io.cpp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── io_test.cpp │ │ │ │ │ ├── misc_helpers.cpp │ │ │ │ │ ├── pass_helper.cpp │ │ │ │ │ ├── requirements.cpp │ │ │ │ │ ├── requirements.hpp │ │ │ │ │ ├── requirements_test.cpp │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── atf-run.hooks │ │ │ │ │ │ └── common.conf │ │ │ │ │ ├── several_tcs_helper.c │ │ │ │ │ ├── share │ │ │ │ │ │ └── atf-run.hooks │ │ │ │ │ ├── signals.cpp │ │ │ │ │ ├── signals.hpp │ │ │ │ │ ├── signals_test.cpp │ │ │ │ │ ├── test-program.cpp │ │ │ │ │ ├── test-program.hpp │ │ │ │ │ ├── test_program_test.cpp │ │ │ │ │ ├── timer.cpp │ │ │ │ │ ├── timer.hpp │ │ │ │ │ ├── user.cpp │ │ │ │ │ ├── user.hpp │ │ │ │ │ ├── user_test.cpp │ │ │ │ │ └── zero_tcs_helper.c │ │ │ │ ├── atf-sh │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── atf-check.1 │ │ │ │ │ ├── atf-check.cpp │ │ │ │ │ ├── atf-check_test.sh │ │ │ │ │ ├── atf-sh-api.3 │ │ │ │ │ ├── atf-sh.1 │ │ │ │ │ ├── atf-sh.cpp │ │ │ │ │ ├── atf_check_test.sh │ │ │ │ │ ├── config_test.sh │ │ │ │ │ ├── integration_test.sh │ │ │ │ │ ├── libatf-sh.subr │ │ │ │ │ ├── misc_helpers.sh │ │ │ │ │ ├── normalize_test.sh │ │ │ │ │ ├── tc_test.sh │ │ │ │ │ └── tp_test.sh │ │ │ │ ├── atf-version │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── atf-version.1 │ │ │ │ │ ├── atf-version.cpp │ │ │ │ │ └── generate-revision.sh │ │ │ │ ├── bconfig.h.in │ │ │ │ ├── bootstrap │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── h_app_empty.cpp │ │ │ │ │ ├── h_app_opts_args.cpp │ │ │ │ │ ├── h_tp_atf_check_sh.sh │ │ │ │ │ ├── h_tp_basic_c.c │ │ │ │ │ ├── h_tp_basic_cpp.cpp │ │ │ │ │ ├── h_tp_basic_sh.sh │ │ │ │ │ ├── h_tp_fail.sh │ │ │ │ │ ├── h_tp_pass.sh │ │ │ │ │ ├── package.m4 │ │ │ │ │ ├── t_application_help.at │ │ │ │ │ ├── t_application_opts_args.at │ │ │ │ │ ├── t_atf_config.at │ │ │ │ │ ├── t_atf_run.at │ │ │ │ │ ├── t_subr_atf_check.at │ │ │ │ │ ├── t_test_program_compare.at │ │ │ │ │ ├── t_test_program_filter.at │ │ │ │ │ ├── t_test_program_list.at │ │ │ │ │ ├── t_test_program_run.at │ │ │ │ │ ├── testsuite │ │ │ │ │ └── testsuite.at │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── doc │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── atf-formats.5 │ │ │ │ │ ├── atf-test-case.4 │ │ │ │ │ ├── atf-test-program.1 │ │ │ │ │ └── atf.7.in │ │ │ │ ├── m4 │ │ │ │ │ ├── compiler-flags.m4 │ │ │ │ │ ├── cxx-std-funcs.m4 │ │ │ │ │ ├── developer-mode.m4 │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ │ ├── module-application.m4 │ │ │ │ │ ├── module-defs.m4 │ │ │ │ │ ├── module-env.m4 │ │ │ │ │ ├── module-fs.m4 │ │ │ │ │ ├── module-sanity.m4 │ │ │ │ │ ├── module-signals.m4 │ │ │ │ │ └── runtime-tool.m4 │ │ │ │ └── test-programs │ │ │ │ │ ├── Atffile │ │ │ │ │ ├── Makefile.am.inc │ │ │ │ │ ├── c_helpers.c │ │ │ │ │ ├── common.sh │ │ │ │ │ ├── config_test.sh │ │ │ │ │ ├── cpp_helpers.cpp │ │ │ │ │ ├── expect_test.sh │ │ │ │ │ ├── fork_test.sh │ │ │ │ │ ├── meta_data_test.sh │ │ │ │ │ ├── result_test.sh │ │ │ │ │ ├── sh_helpers.sh │ │ │ │ │ └── srcdir_test.sh │ │ │ ├── unittest.sh │ │ │ └── unittest.sh.in │ │ ├── util │ │ │ └── mksymtbl.pl │ │ ├── version │ │ └── win32utils │ │ │ ├── BINDBuild.dsw │ │ │ ├── BuildAll.bat │ │ │ ├── BuildPost.bat │ │ │ ├── BuildSetup.bat │ │ │ ├── SetupLibs.bat │ │ │ ├── dnsheadergen.bat │ │ │ ├── index.html │ │ │ ├── makedefs.pl │ │ │ ├── makeversion.pl │ │ │ ├── readme1st.txt │ │ │ ├── setpk11provider.pl │ │ │ ├── updatelibxml2.pl │ │ │ ├── updateopenssl.pl │ │ │ └── win32-build.txt │ ├── bind_demo_conf │ │ ├── hosts_xia │ │ ├── localhost.zone │ │ ├── named.conf │ │ ├── resolv.xiaconf │ │ ├── sidstock.zone │ │ ├── video.zone │ │ ├── xiaweb.zone │ │ └── xsockconf.ini │ └── demo_setup.sh ├── ftp │ ├── ftp │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bld │ │ ├── cmds.c │ │ ├── cmdtab.c │ │ ├── domacro.c │ │ ├── extern.h │ │ ├── ftp.c │ │ ├── ftp_var.h │ │ ├── main.c │ │ └── ruserpass.c │ └── tinyftp │ │ ├── Makefile │ │ ├── README │ │ ├── bld │ │ ├── cmdparser.h │ │ ├── connections.c │ │ ├── defines.h │ │ ├── fileutils.c │ │ ├── fileutils.h │ │ ├── main.c │ │ └── opts.c ├── fwd_perf │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── fig │ │ ├── Makefile │ │ ├── common.tex │ │ ├── dag_fb0.png │ │ ├── dag_fb0.tex │ │ ├── dag_fb1.png │ │ ├── dag_fb1.tex │ │ ├── dag_fb2.png │ │ ├── dag_fb2.tex │ │ ├── dag_fb3.png │ │ ├── dag_fb3.tex │ │ ├── hdr_fb0.png │ │ ├── hdr_fb0.svg │ │ ├── hdr_fb1.png │ │ ├── hdr_fb1.svg │ │ ├── hdr_fb2.png │ │ ├── hdr_fb2.svg │ │ ├── hdr_fb3.png │ │ ├── hdr_fb3.svg │ │ └── tkz-graph.sty │ ├── launch.py │ ├── main.py │ ├── main.ui │ └── ui_main.py ├── io_engine │ ├── .gitignore │ ├── COPYING │ ├── driver │ │ ├── Makefile │ │ ├── affinity.py │ │ ├── install.py │ │ ├── ixgbe.h │ │ ├── ixgbe_82598.c │ │ ├── ixgbe_82599.c │ │ ├── ixgbe_api.c │ │ ├── ixgbe_api.h │ │ ├── ixgbe_common.c │ │ ├── ixgbe_common.h │ │ ├── ixgbe_dcb.c │ │ ├── ixgbe_dcb.h │ │ ├── ixgbe_dcb_82598.c │ │ ├── ixgbe_dcb_82598.h │ │ ├── ixgbe_dcb_82599.c │ │ ├── ixgbe_dcb_82599.h │ │ ├── ixgbe_dcb_nl.c │ │ ├── ixgbe_ethtool.c │ │ ├── ixgbe_fcoe.c │ │ ├── ixgbe_fcoe.h │ │ ├── ixgbe_main.c │ │ ├── ixgbe_osdep.h │ │ ├── ixgbe_param.c │ │ ├── ixgbe_phy.c │ │ ├── ixgbe_phy.h │ │ ├── ixgbe_sysfs.c │ │ ├── ixgbe_type.h │ │ ├── kcompat.c │ │ ├── kcompat.h │ │ └── kcompat_ethtool.c │ ├── include │ │ └── ps.h │ ├── lib │ │ ├── Makefile │ │ └── pslib.c │ └── samples │ │ ├── echo │ │ ├── Makefile │ │ └── echo.c │ │ ├── list_devices │ │ ├── Makefile │ │ └── list_devices.c │ │ ├── packet_generator │ │ ├── Makefile │ │ └── packet_generator.c │ │ └── rxdump │ │ ├── Makefile │ │ └── rxdump.c ├── migration │ ├── .gitignore │ ├── INSTRUCTION │ ├── common.sh │ ├── listen_for_incoming_guest.sh │ ├── migrate_to_hostA.sh │ ├── migrate_to_hostB.sh │ ├── migration.pdf │ ├── output_client │ ├── output_server │ ├── plot.dat │ ├── plot.gnuplot │ ├── plot.py │ ├── qemu_monitor_cmd.py │ ├── run_ping_client.sh │ ├── run_ping_server.sh │ ├── ssh_to_local_guest.sh │ ├── start_local_guest.sh │ ├── stop_local_guest.sh │ ├── tap-down.sh │ └── tap-up.sh ├── planetlab │ ├── 4ID_topo │ ├── IPLATLON │ ├── backbone_topo │ ├── bin-files │ ├── browser_mockup.py │ ├── clean.py │ ├── computeIPLONLAT.py │ ├── data │ │ ├── fourid │ │ │ ├── stats-4id.txt │ │ │ ├── stats-4id.txt-old │ │ │ └── stats-4id.txt-old2 │ │ └── tunneling │ │ │ ├── stats-tunneling.txt │ │ │ ├── stats-tunneling.txt-old │ │ │ ├── stats-tunneling.txt-old2 │ │ │ └── stats-tunneling.txt-old3 │ ├── id_rsa │ ├── id_rsa.pub │ ├── init.sh │ ├── libc.conf │ ├── libprotobuf.so.8 │ ├── logs │ │ └── uname-log │ ├── names │ ├── plot │ │ ├── plot.py │ │ ├── plot2.py │ │ └── plot_incentives.py │ ├── proxy_mockup.sh │ ├── refresh.sh │ ├── run_all.py │ ├── s │ ├── scripts │ │ ├── local_server.py │ │ ├── master_server.py │ │ ├── plcommon.py │ │ └── rpyc │ │ │ ├── __init__.py │ │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── colls.py │ │ │ └── compat.py │ │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ ├── rpyc_classic.py │ │ │ └── rpyc_registry.py │ │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── authenticators.py │ │ │ ├── classic.py │ │ │ ├── factory.py │ │ │ ├── helpers.py │ │ │ ├── registry.py │ │ │ ├── server.py │ │ │ └── ssh.py │ │ │ └── version.py │ └── webserver_mockup.sh └── sigcomm2012demo │ └── run_giada_network_bootstrap ├── log └── README ├── tools ├── .gitignore ├── Makefile ├── boottest ├── drink.c ├── firehose.c ├── geni │ ├── .gitignore │ ├── buildxia.sh │ ├── geni_rspec │ ├── xia-2r-2h.rspec │ ├── xia-2r-2h.rspec.template │ ├── xiaboot │ └── xiahosts.template ├── visualizations │ ├── dagtool │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── index.html │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── dag.js │ ├── distributed_click │ │ ├── .flashProjectProperties │ │ ├── README │ │ ├── Visualizer.fla │ │ ├── Visualizer.html │ │ ├── Visualizer.swf │ │ ├── images │ │ │ ├── cisco-router-icon.jpg │ │ │ ├── cloud.png │ │ │ ├── host.png │ │ │ ├── host_cropped.png │ │ │ ├── host_cropped_small.png │ │ │ ├── mac_comp.jpg │ │ │ ├── map.png │ │ │ ├── router.png │ │ │ ├── router_cropped.png │ │ │ ├── server.png │ │ │ └── server_small.png │ │ ├── layout │ │ └── source │ │ │ ├── com │ │ │ └── adobe │ │ │ │ ├── air │ │ │ │ ├── crypto │ │ │ │ │ └── EncryptionKeyGenerator.as │ │ │ │ ├── filesystem │ │ │ │ │ ├── FileMonitor.as │ │ │ │ │ ├── FileUtil.as │ │ │ │ │ ├── VolumeMonitor.as │ │ │ │ │ └── events │ │ │ │ │ │ └── FileMonitorEvent.as │ │ │ │ ├── logging │ │ │ │ │ └── FileTarget.as │ │ │ │ └── net │ │ │ │ │ ├── ResourceCache.as │ │ │ │ │ └── events │ │ │ │ │ └── ResourceCacheEvent.as │ │ │ │ ├── crypto │ │ │ │ ├── HMAC.as │ │ │ │ ├── MD5.as │ │ │ │ ├── MD5Stream.as │ │ │ │ ├── SHA1.as │ │ │ │ ├── SHA224.as │ │ │ │ ├── SHA256.as │ │ │ │ └── WSSEUsernameToken.as │ │ │ │ ├── errors │ │ │ │ └── IllegalStateError.as │ │ │ │ ├── fileformats │ │ │ │ └── vcard │ │ │ │ │ ├── Address.as │ │ │ │ │ ├── Email.as │ │ │ │ │ ├── Phone.as │ │ │ │ │ ├── VCard.as │ │ │ │ │ └── VCardParser.as │ │ │ │ ├── images │ │ │ │ ├── BitString.as │ │ │ │ ├── JPGEncoder.as │ │ │ │ └── PNGEncoder.as │ │ │ │ ├── net │ │ │ │ ├── DynamicURLLoader.as │ │ │ │ ├── IURIResolver.as │ │ │ │ ├── MimeTypeMap.as │ │ │ │ ├── URI.as │ │ │ │ ├── URIEncodingBitmap.as │ │ │ │ └── proxies │ │ │ │ │ └── RFC2817Socket.as │ │ │ │ ├── protocols │ │ │ │ └── dict │ │ │ │ │ ├── Database.as │ │ │ │ │ ├── Definition.as │ │ │ │ │ ├── Dict.as │ │ │ │ │ ├── DictionaryServer.as │ │ │ │ │ ├── MatchStrategy.as │ │ │ │ │ ├── Response.as │ │ │ │ │ ├── events │ │ │ │ │ ├── ConnectedEvent.as │ │ │ │ │ ├── DatabaseEvent.as │ │ │ │ │ ├── DefinitionEvent.as │ │ │ │ │ ├── DefinitionHeaderEvent.as │ │ │ │ │ ├── DictionaryServerEvent.as │ │ │ │ │ ├── DisconnectedEvent.as │ │ │ │ │ ├── ErrorEvent.as │ │ │ │ │ ├── MatchEvent.as │ │ │ │ │ ├── MatchStrategiesEvent.as │ │ │ │ │ └── NoMatchEvent.as │ │ │ │ │ └── util │ │ │ │ │ ├── CompleteResponseEvent.as │ │ │ │ │ └── SocketHelper.as │ │ │ │ ├── serialization │ │ │ │ └── json │ │ │ │ │ ├── JSON.as │ │ │ │ │ ├── JSONDecoder.as │ │ │ │ │ ├── JSONEncoder.as │ │ │ │ │ ├── JSONParseError.as │ │ │ │ │ ├── JSONToken.as │ │ │ │ │ ├── JSONTokenType.as │ │ │ │ │ └── JSONTokenizer.as │ │ │ │ ├── utils │ │ │ │ ├── ArrayUtil.as │ │ │ │ ├── DateUtil.as │ │ │ │ ├── DictionaryUtil.as │ │ │ │ ├── IntUtil.as │ │ │ │ ├── NumberFormatter.as │ │ │ │ ├── StringUtil.as │ │ │ │ └── XMLUtil.as │ │ │ │ └── webapis │ │ │ │ ├── ServiceBase.as │ │ │ │ ├── URLLoaderBase.as │ │ │ │ └── events │ │ │ │ └── ServiceEvent.as │ │ │ └── edu │ │ │ └── cmu │ │ │ ├── MyGlobal.as │ │ │ ├── gui │ │ │ ├── Controls.as │ │ │ ├── Floater.as │ │ │ ├── Key.as │ │ │ ├── LinkInfoBase.as │ │ │ ├── LinkInfoChart.as │ │ │ ├── LinkInfoChartCompact.as │ │ │ ├── LinkInfoChartStandard.as │ │ │ ├── LinkInfoPanel.as │ │ │ └── LinkInfoStub.as │ │ │ ├── layouts │ │ │ ├── CustomLayout.as │ │ │ ├── Layout.as │ │ │ ├── LineLayout.as │ │ │ ├── RandomLayout.as │ │ │ └── SimpleLayout.as │ │ │ ├── networkelements │ │ │ ├── Cloud.as │ │ │ ├── Connection.as │ │ │ ├── Host.as │ │ │ ├── NetworkElement.as │ │ │ ├── Router.as │ │ │ └── Server.as │ │ │ ├── topology │ │ │ ├── Topology.as │ │ │ └── TopologyManager.as │ │ │ └── traffic │ │ │ ├── TrafficManager.as │ │ │ └── TrafficType.as │ ├── local_click │ │ ├── README │ │ ├── Visualizer.html │ │ └── Visualizer.swf │ └── xia_inspector │ │ ├── README │ │ ├── images │ │ ├── graphics.ai │ │ ├── inspector-selected.png │ │ ├── inspector-title.png │ │ ├── inspector.png │ │ ├── magnifying_glass.jpg │ │ ├── magnifying_glass.png │ │ └── magnifying_glass_med.psd │ │ └── xia-inspector.user.js └── xtunnel └── xia.sublime-project /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/README.md -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/dagaddr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/.gitignore -------------------------------------------------------------------------------- /api/dagaddr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/Makefile -------------------------------------------------------------------------------- /api/dagaddr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/README -------------------------------------------------------------------------------- /api/dagaddr/cpp/.gitignore: -------------------------------------------------------------------------------- 1 | dagaddr_test 2 | -------------------------------------------------------------------------------- /api/dagaddr/cpp/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/cpp/Doxyfile -------------------------------------------------------------------------------- /api/dagaddr/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/cpp/Makefile -------------------------------------------------------------------------------- /api/dagaddr/cpp/dagaddr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/cpp/dagaddr.cpp -------------------------------------------------------------------------------- /api/dagaddr/cpp/mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/cpp/mainpage.h -------------------------------------------------------------------------------- /api/dagaddr/cpp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/cpp/test.cpp -------------------------------------------------------------------------------- /api/dagaddr/cpp/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/cpp/utils.cpp -------------------------------------------------------------------------------- /api/dagaddr/cpp/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/cpp/utils.hpp -------------------------------------------------------------------------------- /api/dagaddr/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/python/Makefile -------------------------------------------------------------------------------- /api/dagaddr/python/dagaddr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/python/dagaddr.i -------------------------------------------------------------------------------- /api/dagaddr/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/dagaddr/python/test.py -------------------------------------------------------------------------------- /api/include/Xkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/include/Xkeys.h -------------------------------------------------------------------------------- /api/include/Xsecurity.h: -------------------------------------------------------------------------------- 1 | ../../click-2.0.1/include/click/xiasecurity.hh -------------------------------------------------------------------------------- /api/include/Xsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/include/Xsocket.h -------------------------------------------------------------------------------- /api/include/clicknetxia.h: -------------------------------------------------------------------------------- 1 | ../../click-2.0.1/include/clicknet/xia.h -------------------------------------------------------------------------------- /api/include/dagaddr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/include/dagaddr.hpp -------------------------------------------------------------------------------- /api/include/xia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/include/xia.h -------------------------------------------------------------------------------- /api/include/xip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/include/xip.h -------------------------------------------------------------------------------- /api/include/xns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/include/xns.h -------------------------------------------------------------------------------- /api/include/xssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/include/xssl.h -------------------------------------------------------------------------------- /api/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.py 2 | *.so 3 | *.a 4 | -------------------------------------------------------------------------------- /api/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/lib/README -------------------------------------------------------------------------------- /api/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/wrapper/Makefile -------------------------------------------------------------------------------- /api/wrapper/test/.gitignore: -------------------------------------------------------------------------------- 1 | xwtest 2 | -------------------------------------------------------------------------------- /api/wrapper/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/wrapper/test/Makefile -------------------------------------------------------------------------------- /api/wrapper/test/xwtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/wrapper/test/xwtest.c -------------------------------------------------------------------------------- /api/wrapper/xwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/wrapper/xwrap.c -------------------------------------------------------------------------------- /api/xsocket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/.gitignore -------------------------------------------------------------------------------- /api/xsocket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Makefile -------------------------------------------------------------------------------- /api/xsocket/Xaccept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xaccept.c -------------------------------------------------------------------------------- /api/xsocket/Xbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xbind.c -------------------------------------------------------------------------------- /api/xsocket/XbindPush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XbindPush.c -------------------------------------------------------------------------------- /api/xsocket/Xclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xclose.c -------------------------------------------------------------------------------- /api/xsocket/Xconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xconnect.c -------------------------------------------------------------------------------- /api/xsocket/Xdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xdoc.h -------------------------------------------------------------------------------- /api/xsocket/Xfcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xfcntl.c -------------------------------------------------------------------------------- /api/xsocket/Xfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xfork.c -------------------------------------------------------------------------------- /api/xsocket/XgetChunkStatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XgetChunkStatus.c -------------------------------------------------------------------------------- /api/xsocket/XgetDAGbyName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XgetDAGbyName.c -------------------------------------------------------------------------------- /api/xsocket/Xgetaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xgetaddrinfo.c -------------------------------------------------------------------------------- /api/xsocket/Xinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xinit.c -------------------------------------------------------------------------------- /api/xsocket/Xinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xinit.h -------------------------------------------------------------------------------- /api/xsocket/Xkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xkeys.c -------------------------------------------------------------------------------- /api/xsocket/Xlisten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xlisten.c -------------------------------------------------------------------------------- /api/xsocket/Xmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xmsg.c -------------------------------------------------------------------------------- /api/xsocket/Xnotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xnotify.c -------------------------------------------------------------------------------- /api/xsocket/XpushChunkto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XpushChunkto.c -------------------------------------------------------------------------------- /api/xsocket/XputChunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XputChunk.c -------------------------------------------------------------------------------- /api/xsocket/XreadChunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XreadChunk.c -------------------------------------------------------------------------------- /api/xsocket/Xrecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xrecv.c -------------------------------------------------------------------------------- /api/xsocket/XrecvChunkfrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XrecvChunkfrom.c -------------------------------------------------------------------------------- /api/xsocket/XrequestChunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XrequestChunk.c -------------------------------------------------------------------------------- /api/xsocket/Xsecurity.c: -------------------------------------------------------------------------------- 1 | ../../click-2.0.1/lib/xiasecurity.cc -------------------------------------------------------------------------------- /api/xsocket/Xselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xselect.c -------------------------------------------------------------------------------- /api/xsocket/Xsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xsend.c -------------------------------------------------------------------------------- /api/xsocket/Xsetsockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xsetsockopt.c -------------------------------------------------------------------------------- /api/xsocket/Xsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xsocket.c -------------------------------------------------------------------------------- /api/xsocket/XsocketsAPI.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XsocketsAPI.cfg -------------------------------------------------------------------------------- /api/xsocket/XupdateAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XupdateAD.c -------------------------------------------------------------------------------- /api/xsocket/XupdateNameServerDAG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/XupdateNameServerDAG.c -------------------------------------------------------------------------------- /api/xsocket/Xutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xutil.c -------------------------------------------------------------------------------- /api/xsocket/Xutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/Xutil.h -------------------------------------------------------------------------------- /api/xsocket/minini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/LICENSE -------------------------------------------------------------------------------- /api/xsocket/minini/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/NOTICE -------------------------------------------------------------------------------- /api/xsocket/minini/minGlue-FatFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/minGlue-FatFs.h -------------------------------------------------------------------------------- /api/xsocket/minini/minGlue-ccs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/minGlue-ccs.h -------------------------------------------------------------------------------- /api/xsocket/minini/minGlue-efsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/minGlue-efsl.h -------------------------------------------------------------------------------- /api/xsocket/minini/minGlue-mdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/minGlue-mdd.h -------------------------------------------------------------------------------- /api/xsocket/minini/minGlue-stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/minGlue-stdio.h -------------------------------------------------------------------------------- /api/xsocket/minini/minGlue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/minGlue.h -------------------------------------------------------------------------------- /api/xsocket/minini/minIni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/minIni.c -------------------------------------------------------------------------------- /api/xsocket/minini/minIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/minIni.h -------------------------------------------------------------------------------- /api/xsocket/minini/minIni.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/minIni.pdf -------------------------------------------------------------------------------- /api/xsocket/minini/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/test.c -------------------------------------------------------------------------------- /api/xsocket/minini/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/test.ini -------------------------------------------------------------------------------- /api/xsocket/minini/testplain.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/testplain.ini -------------------------------------------------------------------------------- /api/xsocket/minini/wxMinIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/minini/wxMinIni.h -------------------------------------------------------------------------------- /api/xsocket/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/python/.gitignore -------------------------------------------------------------------------------- /api/xsocket/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/python/Makefile -------------------------------------------------------------------------------- /api/xsocket/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/python/README -------------------------------------------------------------------------------- /api/xsocket/python/c_xsocket.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/python/c_xsocket.i -------------------------------------------------------------------------------- /api/xsocket/python/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/python/doc/Makefile -------------------------------------------------------------------------------- /api/xsocket/python/doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/python/doc/source/conf.py -------------------------------------------------------------------------------- /api/xsocket/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/state.c -------------------------------------------------------------------------------- /api/xsocket/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/state.h -------------------------------------------------------------------------------- /api/xsocket/test/.gitignore: -------------------------------------------------------------------------------- 1 | *_test 2 | -------------------------------------------------------------------------------- /api/xsocket/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/test/Makefile -------------------------------------------------------------------------------- /api/xsocket/test/addrinfo_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/test/addrinfo_test.c -------------------------------------------------------------------------------- /api/xsocket/test/dag_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/test/dag_test.c -------------------------------------------------------------------------------- /api/xsocket/test/opttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/test/opttest.c -------------------------------------------------------------------------------- /api/xsocket/test/poll_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/test/poll_test.c -------------------------------------------------------------------------------- /api/xsocket/test/select_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/test/select_test.c -------------------------------------------------------------------------------- /api/xsocket/test/xwtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/test/xwtest.c -------------------------------------------------------------------------------- /api/xsocket/unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xsocket/unittest.cpp -------------------------------------------------------------------------------- /api/xsocket/xia.proto: -------------------------------------------------------------------------------- 1 | ../../click/userlevel/xia.proto -------------------------------------------------------------------------------- /api/xssl/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/Doxyfile -------------------------------------------------------------------------------- /api/xssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/Makefile -------------------------------------------------------------------------------- /api/xssl/XSSL_CTX_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/XSSL_CTX_new.c -------------------------------------------------------------------------------- /api/xssl/XSSL_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/XSSL_accept.c -------------------------------------------------------------------------------- /api/xssl/XSSL_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/XSSL_connect.c -------------------------------------------------------------------------------- /api/xssl/XSSL_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/XSSL_new.c -------------------------------------------------------------------------------- /api/xssl/XSSL_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/XSSL_read.c -------------------------------------------------------------------------------- /api/xssl/XSSL_set_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/XSSL_set_fd.c -------------------------------------------------------------------------------- /api/xssl/XSSL_shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/XSSL_shutdown.c -------------------------------------------------------------------------------- /api/xssl/XSSL_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/XSSL_util.c -------------------------------------------------------------------------------- /api/xssl/XSSL_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/api/xssl/XSSL_write.c -------------------------------------------------------------------------------- /applications/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/Makefile -------------------------------------------------------------------------------- /applications/demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/demo/Makefile -------------------------------------------------------------------------------- /applications/demo/web_demo/.gitignore: -------------------------------------------------------------------------------- 1 | vs 2 | -------------------------------------------------------------------------------- /applications/demo/web_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/demo/web_demo/Makefile -------------------------------------------------------------------------------- /applications/demo/web_demo/xia_address.py: -------------------------------------------------------------------------------- 1 | ../../web/xia_address.py -------------------------------------------------------------------------------- /applications/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/.gitignore -------------------------------------------------------------------------------- /applications/example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/Makefile -------------------------------------------------------------------------------- /applications/example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/README -------------------------------------------------------------------------------- /applications/example/dag_manipulation/.gitignore: -------------------------------------------------------------------------------- 1 | dagaddr_example 2 | -------------------------------------------------------------------------------- /applications/example/echoclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/echoclient.c -------------------------------------------------------------------------------- /applications/example/echoclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/echoclient.py -------------------------------------------------------------------------------- /applications/example/echoserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/echoserver.c -------------------------------------------------------------------------------- /applications/example/echoserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/echoserver.py -------------------------------------------------------------------------------- /applications/example/xsockconf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/xsockconf.ini -------------------------------------------------------------------------------- /applications/example/xssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/xssl/Makefile -------------------------------------------------------------------------------- /applications/example/xssl/echoclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/xssl/echoclient.c -------------------------------------------------------------------------------- /applications/example/xssl/echoserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/example/xssl/echoserver.c -------------------------------------------------------------------------------- /applications/irc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/Makefile -------------------------------------------------------------------------------- /applications/irc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/README.md -------------------------------------------------------------------------------- /applications/irc/miniircd/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /applications/irc/miniircd/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/miniircd/CHANGES -------------------------------------------------------------------------------- /applications/irc/miniircd/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/miniircd/COPYING -------------------------------------------------------------------------------- /applications/irc/miniircd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/miniircd/Makefile -------------------------------------------------------------------------------- /applications/irc/miniircd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/miniircd/README.md -------------------------------------------------------------------------------- /applications/irc/miniircd/miniircd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/miniircd/miniircd -------------------------------------------------------------------------------- /applications/irc/miniircd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/miniircd/test -------------------------------------------------------------------------------- /applications/irc/miniircd/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/miniircd/test.py -------------------------------------------------------------------------------- /applications/irc/sic/.gitignore: -------------------------------------------------------------------------------- 1 | sic 2 | -------------------------------------------------------------------------------- /applications/irc/sic/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/sic/.hgtags -------------------------------------------------------------------------------- /applications/irc/sic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/sic/LICENSE -------------------------------------------------------------------------------- /applications/irc/sic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/sic/Makefile -------------------------------------------------------------------------------- /applications/irc/sic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/sic/README -------------------------------------------------------------------------------- /applications/irc/sic/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/sic/config.mk -------------------------------------------------------------------------------- /applications/irc/sic/sic.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/sic/sic.1 -------------------------------------------------------------------------------- /applications/irc/sic/sic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/sic/sic.c -------------------------------------------------------------------------------- /applications/irc/sic/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/sic/util.c -------------------------------------------------------------------------------- /applications/irc/xsockconf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/irc/xsockconf.ini -------------------------------------------------------------------------------- /applications/multicast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/multicast/.gitignore -------------------------------------------------------------------------------- /applications/multicast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/multicast/Makefile -------------------------------------------------------------------------------- /applications/multicast/multicast_rp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/multicast/multicast_rp.c -------------------------------------------------------------------------------- /applications/multicast/xsockconf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/multicast/xsockconf.ini -------------------------------------------------------------------------------- /applications/neitris-46/antidote.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/antidote.bmp -------------------------------------------------------------------------------- /applications/neitris-46/brick1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/brick1.bmp -------------------------------------------------------------------------------- /applications/neitris-46/brick2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/brick2.bmp -------------------------------------------------------------------------------- /applications/neitris-46/brick3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/brick3.bmp -------------------------------------------------------------------------------- /applications/neitris-46/brick4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/brick4.bmp -------------------------------------------------------------------------------- /applications/neitris-46/brick5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/brick5.bmp -------------------------------------------------------------------------------- /applications/neitris-46/brick6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/brick6.bmp -------------------------------------------------------------------------------- /applications/neitris-46/brick7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/brick7.bmp -------------------------------------------------------------------------------- /applications/neitris-46/bricks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/bricks.bmp -------------------------------------------------------------------------------- /applications/neitris-46/clearscr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/clearscr.bmp -------------------------------------------------------------------------------- /applications/neitris-46/donator.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/donator.bmp -------------------------------------------------------------------------------- /applications/neitris-46/dot1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/dot1.bmp -------------------------------------------------------------------------------- /applications/neitris-46/dot2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/dot2.bmp -------------------------------------------------------------------------------- /applications/neitris-46/dot3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/dot3.bmp -------------------------------------------------------------------------------- /applications/neitris-46/dot4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/dot4.bmp -------------------------------------------------------------------------------- /applications/neitris-46/dot5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/dot5.bmp -------------------------------------------------------------------------------- /applications/neitris-46/dot6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/dot6.bmp -------------------------------------------------------------------------------- /applications/neitris-46/dot7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/dot7.bmp -------------------------------------------------------------------------------- /applications/neitris-46/dotter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/dotter.bmp -------------------------------------------------------------------------------- /applications/neitris-46/escalator.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/escalator.bmp -------------------------------------------------------------------------------- /applications/neitris-46/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/info.png -------------------------------------------------------------------------------- /applications/neitris-46/neitris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/neitris.py -------------------------------------------------------------------------------- /applications/neitris-46/neitris_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/neitris_cfg.py -------------------------------------------------------------------------------- /applications/neitris-46/neitris_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/neitris_cli.py -------------------------------------------------------------------------------- /applications/neitris-46/rabbit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/rabbit.bmp -------------------------------------------------------------------------------- /applications/neitris-46/swapscr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/swapscr.bmp -------------------------------------------------------------------------------- /applications/neitris-46/turtle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/turtle.bmp -------------------------------------------------------------------------------- /applications/neitris-46/updown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/updown.bmp -------------------------------------------------------------------------------- /applications/neitris-46/zed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/neitris-46/zed.bmp -------------------------------------------------------------------------------- /applications/tcp/README: -------------------------------------------------------------------------------- 1 | Simple TCP applications for testing the wrapper 2 | -------------------------------------------------------------------------------- /applications/tcp/ec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/tcp/ec.py -------------------------------------------------------------------------------- /applications/tcp/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/tcp/es.py -------------------------------------------------------------------------------- /applications/tcp/pweb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/tcp/pweb -------------------------------------------------------------------------------- /applications/tinyhttpd/.gitignore: -------------------------------------------------------------------------------- 1 | httpd 2 | simpleclient 3 | -------------------------------------------------------------------------------- /applications/tinyhttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/tinyhttpd/Makefile -------------------------------------------------------------------------------- /applications/tinyhttpd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/tinyhttpd/README -------------------------------------------------------------------------------- /applications/tinyhttpd/htdocs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/tinyhttpd/htdocs/README -------------------------------------------------------------------------------- /applications/tinyhttpd/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/tinyhttpd/httpd.c -------------------------------------------------------------------------------- /applications/tinyhttpd/simpleclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/tinyhttpd/simpleclient.c -------------------------------------------------------------------------------- /applications/web/.gitignore: -------------------------------------------------------------------------------- 1 | xia_pb2.py 2 | -------------------------------------------------------------------------------- /applications/web/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/proxy.py -------------------------------------------------------------------------------- /applications/web/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/webserver.py -------------------------------------------------------------------------------- /applications/web/www/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/demo.html -------------------------------------------------------------------------------- /applications/web/www/img/anon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/img/anon.jpg -------------------------------------------------------------------------------- /applications/web/www/img/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/img/image.jpg -------------------------------------------------------------------------------- /applications/web/www/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/img/info.png -------------------------------------------------------------------------------- /applications/web/www/img/photo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/img/photo-2.jpg -------------------------------------------------------------------------------- /applications/web/www/img/plane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/img/plane.jpg -------------------------------------------------------------------------------- /applications/web/www/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/simple.html -------------------------------------------------------------------------------- /applications/web/www/stock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/stock.html -------------------------------------------------------------------------------- /applications/web/www/very_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/very_simple.html -------------------------------------------------------------------------------- /applications/web/www/xia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/xia/index.html -------------------------------------------------------------------------------- /applications/web/www/xia/rw_common/themes/smartbusiness/css/width/width_1000.css: -------------------------------------------------------------------------------- 1 | #container, #footer { 2 | width: 1000px; 3 | } -------------------------------------------------------------------------------- /applications/web/www/xia/rw_common/themes/smartbusiness/css/width/width_680.css: -------------------------------------------------------------------------------- 1 | #container, #footer { 2 | width: 680px; 3 | } -------------------------------------------------------------------------------- /applications/web/www/xia/rw_common/themes/smartbusiness/ie.css: -------------------------------------------------------------------------------- 1 | #navcontainer a { 2 | height: 28px; 3 | } -------------------------------------------------------------------------------- /applications/web/www/xia/rw_common/version.txt: -------------------------------------------------------------------------------- 1 | 8502 -------------------------------------------------------------------------------- /applications/web/www/xia/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/xia/sitemap.xml -------------------------------------------------------------------------------- /applications/web/www/xia_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/www/xia_service.html -------------------------------------------------------------------------------- /applications/web/xia_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/xia_address.py -------------------------------------------------------------------------------- /applications/web/xiaproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/xiaproxy.py -------------------------------------------------------------------------------- /applications/web/xsockconf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/web/xsockconf.ini -------------------------------------------------------------------------------- /applications/xnetcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/xnetcat/Makefile -------------------------------------------------------------------------------- /applications/xnetcat/xnetcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/xnetcat/xnetcat.c -------------------------------------------------------------------------------- /applications/xping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/xping/Makefile -------------------------------------------------------------------------------- /applications/xping/xping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/xping/xping.c -------------------------------------------------------------------------------- /applications/xregister/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/xregister/Makefile -------------------------------------------------------------------------------- /applications/xregister/xregister.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/xregister/xregister.c -------------------------------------------------------------------------------- /applications/xtraceroute/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/xtraceroute/Makefile -------------------------------------------------------------------------------- /applications/xtraceroute/xtraceroute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/applications/xtraceroute/xtraceroute.c -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /bin/clickgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/clickgraph -------------------------------------------------------------------------------- /bin/explorer/click_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/explorer/click_control.py -------------------------------------------------------------------------------- /bin/explorer/explorer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/explorer/explorer -------------------------------------------------------------------------------- /bin/explorer/xroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/explorer/xroute.py -------------------------------------------------------------------------------- /bin/genkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/genkeys.py -------------------------------------------------------------------------------- /bin/read_topology: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/read_topology -------------------------------------------------------------------------------- /bin/run_web_demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/run_web_demo -------------------------------------------------------------------------------- /bin/xconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xconfig.py -------------------------------------------------------------------------------- /bin/xdag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xdag -------------------------------------------------------------------------------- /bin/xdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xdebug -------------------------------------------------------------------------------- /bin/xdev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xdev -------------------------------------------------------------------------------- /bin/xianet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xianet -------------------------------------------------------------------------------- /bin/xidgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xidgen -------------------------------------------------------------------------------- /bin/xlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xlog -------------------------------------------------------------------------------- /bin/xnetstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xnetstat -------------------------------------------------------------------------------- /bin/xroute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xroute -------------------------------------------------------------------------------- /bin/xroute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xroute_test.py -------------------------------------------------------------------------------- /bin/xsockconf.ini: -------------------------------------------------------------------------------- 1 | # this file has been replaced by etc/xsockconf.ini 2 | -------------------------------------------------------------------------------- /bin/xwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/bin/xwrap -------------------------------------------------------------------------------- /click: -------------------------------------------------------------------------------- 1 | click-2.0.1/ -------------------------------------------------------------------------------- /click-2.0.1/.gitignore: -------------------------------------------------------------------------------- 1 | .configured 2 | elementmap.xml 3 | 4 | -------------------------------------------------------------------------------- /click-2.0.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/AUTHORS -------------------------------------------------------------------------------- /click-2.0.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/COPYING -------------------------------------------------------------------------------- /click-2.0.1/DISTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/DISTFILES -------------------------------------------------------------------------------- /click-2.0.1/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/FAQ -------------------------------------------------------------------------------- /click-2.0.1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/INSTALL -------------------------------------------------------------------------------- /click-2.0.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/LICENSE -------------------------------------------------------------------------------- /click-2.0.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/NEWS -------------------------------------------------------------------------------- /click-2.0.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/README -------------------------------------------------------------------------------- /click-2.0.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/aclocal.m4 -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/Makefile.am -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/README -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/aclocal.m4 -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/clicky.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/clicky.glade -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/clicky.gladep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/clicky.gladep -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/clicky.gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/clicky.gtkrc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/config.h.in -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/configure -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/configure.ac -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/cdriver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/cdriver.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/cdriver.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/cdriver.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/clicky.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/clicky.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/crouter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/crouter.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/crouter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/crouter.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/ddecor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/ddecor.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/ddecor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/ddecor.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/dialogs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/dialogs.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/dstyle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/dstyle.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/dstyle.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/dstyle.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/dwidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/dwidget.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/dwidget.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/dwidget.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/hvalues.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/hvalues.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/hvalues.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/hvalues.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/permstr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/permstr.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/permstr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/permstr.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/ref.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/ref.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/support.c -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/support.h -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/tmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/tmain.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/tmain.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/tmain.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/wmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/wmain.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/clicky/src/wmain.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/clicky/src/wmain.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/csclient/csclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/csclient/csclient.cc -------------------------------------------------------------------------------- /click-2.0.1/apps/csclient/csclient.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/csclient/csclient.hh -------------------------------------------------------------------------------- /click-2.0.1/apps/csclient/test.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/apps/csclient/test.click -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/BSDmakefile -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/clickfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/clickfs.cc -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/clickfs_tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/clickfs_tree.cc -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/clickfs_tree.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/clickfs_tree.hh -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/clickfs_vnops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/clickfs_vnops.cc -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/config.cc -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/kernelerror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/kernelerror.cc -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/kernelerror.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/kernelerror.hh -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/module.cc -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/module_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/module_c.c -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/modulepriv.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/modulepriv.hh -------------------------------------------------------------------------------- /click-2.0.1/bsdmodule/sched.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/bsdmodule/sched.cc -------------------------------------------------------------------------------- /click-2.0.1/click-buildtool.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/click-buildtool.in -------------------------------------------------------------------------------- /click-2.0.1/click-compile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/click-compile.in -------------------------------------------------------------------------------- /click-2.0.1/click-mkelemmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/click-mkelemmap -------------------------------------------------------------------------------- /click-2.0.1/click.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/click.spec -------------------------------------------------------------------------------- /click-2.0.1/conf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/README -------------------------------------------------------------------------------- /click-2.0.1/conf/click-mkclgw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/click-mkclgw.pl -------------------------------------------------------------------------------- /click-2.0.1/conf/delay.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/delay.click -------------------------------------------------------------------------------- /click-2.0.1/conf/dnsproxy.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/dnsproxy.click -------------------------------------------------------------------------------- /click-2.0.1/conf/example.clgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/example.clgw -------------------------------------------------------------------------------- /click-2.0.1/conf/fake-iprouter.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/fake-iprouter.click -------------------------------------------------------------------------------- /click-2.0.1/conf/fastudpsrc.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/fastudpsrc.click -------------------------------------------------------------------------------- /click-2.0.1/conf/fromhost-tunnel.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/fromhost-tunnel.click -------------------------------------------------------------------------------- /click-2.0.1/conf/geni/cmu-server.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/geni/cmu-server.click -------------------------------------------------------------------------------- /click-2.0.1/conf/geni/host0.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/geni/host0.click -------------------------------------------------------------------------------- /click-2.0.1/conf/geni/host1.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/geni/host1.click -------------------------------------------------------------------------------- /click-2.0.1/conf/geni/init-scripts/sub/click_stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo killall -9 click 4 | 5 | -------------------------------------------------------------------------------- /click-2.0.1/conf/geni/init-scripts/sub/web_demo_proxy_stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo killall -9 proxy.py 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /click-2.0.1/conf/geni/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/geni/readme.txt -------------------------------------------------------------------------------- /click-2.0.1/conf/geni/router0.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/geni/router0.click -------------------------------------------------------------------------------- /click-2.0.1/conf/geni/router1.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/geni/router1.click -------------------------------------------------------------------------------- /click-2.0.1/conf/grid.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/grid.click -------------------------------------------------------------------------------- /click-2.0.1/conf/icmp6error.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/icmp6error.click -------------------------------------------------------------------------------- /click-2.0.1/conf/ip.clickpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/ip.clickpat -------------------------------------------------------------------------------- /click-2.0.1/conf/ip_ether_pktgen.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/ip_ether_pktgen.click -------------------------------------------------------------------------------- /click-2.0.1/conf/ipsec-router.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/ipsec-router.click -------------------------------------------------------------------------------- /click-2.0.1/conf/kernel.clickpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/kernel.clickpat -------------------------------------------------------------------------------- /click-2.0.1/conf/localdelay.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/localdelay.click -------------------------------------------------------------------------------- /click-2.0.1/conf/make-dsdv-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/make-dsdv-config.pl -------------------------------------------------------------------------------- /click-2.0.1/conf/make-dsr-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/make-dsr-config.pl -------------------------------------------------------------------------------- /click-2.0.1/conf/make-ip-conf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/make-ip-conf.pl -------------------------------------------------------------------------------- /click-2.0.1/conf/make-udpcount.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/make-udpcount.pl -------------------------------------------------------------------------------- /click-2.0.1/conf/make-udpgen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/make-udpgen.pl -------------------------------------------------------------------------------- /click-2.0.1/conf/mazu-nat.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/mazu-nat.click -------------------------------------------------------------------------------- /click-2.0.1/conf/microbench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/microbench/.gitignore -------------------------------------------------------------------------------- /click-2.0.1/conf/microbench/click: -------------------------------------------------------------------------------- 1 | ../../userlevel/click -------------------------------------------------------------------------------- /click-2.0.1/conf/microbench/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/microbench/common.inc -------------------------------------------------------------------------------- /click-2.0.1/conf/microbench/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/microbench/prepare.sh -------------------------------------------------------------------------------- /click-2.0.1/conf/print-pings.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/print-pings.click -------------------------------------------------------------------------------- /click-2.0.1/conf/rewriter.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/rewriter.click -------------------------------------------------------------------------------- /click-2.0.1/conf/sampler.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/sampler.click -------------------------------------------------------------------------------- /click-2.0.1/conf/simple-dsdv.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/simple-dsdv.click -------------------------------------------------------------------------------- /click-2.0.1/conf/stridetest.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/stridetest.click -------------------------------------------------------------------------------- /click-2.0.1/conf/test-clicky.ccss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/test-clicky.ccss -------------------------------------------------------------------------------- /click-2.0.1/conf/test-clicky.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/test-clicky.click -------------------------------------------------------------------------------- /click-2.0.1/conf/test-device.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/test-device.click -------------------------------------------------------------------------------- /click-2.0.1/conf/test-ping.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/test-ping.click -------------------------------------------------------------------------------- /click-2.0.1/conf/test-tap.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/test-tap.click -------------------------------------------------------------------------------- /click-2.0.1/conf/test-tun.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/test-tun.click -------------------------------------------------------------------------------- /click-2.0.1/conf/test.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/test.click -------------------------------------------------------------------------------- /click-2.0.1/conf/test2.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/test2.click -------------------------------------------------------------------------------- /click-2.0.1/conf/test3.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/test3.click -------------------------------------------------------------------------------- /click-2.0.1/conf/thomer-nat.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/thomer-nat.click -------------------------------------------------------------------------------- /click-2.0.1/conf/udpcount.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/udpcount.click -------------------------------------------------------------------------------- /click-2.0.1/conf/udpgen.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/udpgen.click -------------------------------------------------------------------------------- /click-2.0.1/conf/unarp.clickpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/unarp.clickpat -------------------------------------------------------------------------------- /click-2.0.1/conf/urewrite.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/urewrite.click -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/README -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/associate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/associate.pl -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/dump.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/dump.click -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/read_handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/read_handler -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/sample.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/sample.click -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/scan.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/scan.pl -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/set_channel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/set_channel.pl -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/sr2.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/sr2.click -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/srcr.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/srcr.click -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/station.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/station.click -------------------------------------------------------------------------------- /click-2.0.1/conf/wifi/write_handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/wifi/write_handler -------------------------------------------------------------------------------- /click-2.0.1/conf/xia_constants.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/xia_constants.click -------------------------------------------------------------------------------- /click-2.0.1/conf/xia_router_lib.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf/xia_router_lib.click -------------------------------------------------------------------------------- /click-2.0.1/conf_kernel_click.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf_kernel_click.sh -------------------------------------------------------------------------------- /click-2.0.1/conf_user_click.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf_user_click.sh -------------------------------------------------------------------------------- /click-2.0.1/conf_user_click_nomt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf_user_click_nomt.sh -------------------------------------------------------------------------------- /click-2.0.1/conf_xia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/conf_xia -------------------------------------------------------------------------------- /click-2.0.1/config-bsdmodule.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/config-bsdmodule.h.in -------------------------------------------------------------------------------- /click-2.0.1/config-linuxmodule.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/config-linuxmodule.h.in -------------------------------------------------------------------------------- /click-2.0.1/config-ns.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/config-ns.h.in -------------------------------------------------------------------------------- /click-2.0.1/config-userlevel.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/config-userlevel.h.in -------------------------------------------------------------------------------- /click-2.0.1/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/config.guess -------------------------------------------------------------------------------- /click-2.0.1/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/config.h.in -------------------------------------------------------------------------------- /click-2.0.1/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/config.mk -------------------------------------------------------------------------------- /click-2.0.1/config.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/config.mk.in -------------------------------------------------------------------------------- /click-2.0.1/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/config.sub -------------------------------------------------------------------------------- /click-2.0.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/configure -------------------------------------------------------------------------------- /click-2.0.1/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/configure.in -------------------------------------------------------------------------------- /click-2.0.1/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/depcomp -------------------------------------------------------------------------------- /click-2.0.1/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/Doxyfile -------------------------------------------------------------------------------- /click-2.0.1/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/doc/click-align.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-align.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-combine.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-combine.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-devirtualize.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-devirtualize.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-elem2man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-elem2man -------------------------------------------------------------------------------- /click-2.0.1/doc/click-flatten.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-flatten.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-install.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-install.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-mkmindriver.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-mkmindriver.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-pretty.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-pretty.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-uncombine.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-uncombine.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-undead.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-undead.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-uninstall.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-uninstall.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click-xform.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click-xform.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/click.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click.5 -------------------------------------------------------------------------------- /click-2.0.1/doc/click.o.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click.o.8 -------------------------------------------------------------------------------- /click-2.0.1/doc/click.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/click.texi -------------------------------------------------------------------------------- /click-2.0.1/doc/elementdoc.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/elementdoc.7 -------------------------------------------------------------------------------- /click-2.0.1/doc/testie.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/testie.1 -------------------------------------------------------------------------------- /click-2.0.1/doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/doc/texinfo.tex -------------------------------------------------------------------------------- /click-2.0.1/drivers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/drivers/README -------------------------------------------------------------------------------- /click-2.0.1/drivers/e1000-4.x/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/drivers/e1000-4.x/README -------------------------------------------------------------------------------- /click-2.0.1/drivers/e1000-5.x/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/drivers/e1000-5.x/README -------------------------------------------------------------------------------- /click-2.0.1/drivers/e1000-7.x/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/drivers/e1000-7.x/README -------------------------------------------------------------------------------- /click-2.0.1/elements/aqm/pi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/aqm/pi.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/aqm/pi.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/aqm/pi.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/aqm/red.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/aqm/red.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/aqm/red.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/aqm/red.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/amoeba.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/amoeba.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/amoeba.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/amoeba.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/dsr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/dsr.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/grid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/grid.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/hello.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/hello.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/hello.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/lrhello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/lrhello.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/lrhello.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/lrhello.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/movesim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/movesim.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/movesim.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/movesim.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/pep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/pep.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/pep.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/pep.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/qvec.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/qvec.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/region.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/region.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/grid/region.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/grid/region.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/decipttl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/decipttl.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/decipttl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/decipttl.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/fixipsrc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/fixipsrc.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/fixipsrc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/fixipsrc.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipencap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipencap.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipencap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipencap.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipfilter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipfilter.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipfilter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipfilter.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipmirror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipmirror.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipmirror.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipmirror.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipprint.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipprint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipprint.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipratemon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipratemon.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ipratemon.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ipratemon.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/markipce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/markipce.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/markipce.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/markipce.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/rfc2507c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/rfc2507c.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/rfc2507c.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/rfc2507c.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/rfc2507d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/rfc2507d.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/rfc2507d.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/rfc2507d.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ripsend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ripsend.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/ripsend.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/ripsend.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/setipdscp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/setipdscp.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/setipdscp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/setipdscp.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/setipecn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/setipecn.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip/setipecn.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip/setipecn.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip6/ip6encap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip6/ip6encap.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip6/ip6encap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip6/ip6encap.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ip6/ip6print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip6/ip6print.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ip6/ip6print.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ip6/ip6print.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/README -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/aes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/aes.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/aes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/aes.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/des.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/des.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/des.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/des.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/desp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/desp.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/desp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/desp.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/esp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/esp.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/esp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/esp.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/hmac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/hmac.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/hmac.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/hmac.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/sha1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/sha1.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/ipsec/sha1.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/ipsec/sha1.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/radio/b8b10.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/radio/b8b10.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/radio/b8b10.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/radio/b8b10.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/radio/bim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/radio/bim.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/radio/bim.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/radio/bim.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/standard/drr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/standard/drr.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/standard/drr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/standard/drr.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/standard/hub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/standard/hub.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/standard/hub.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/standard/hub.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/standard/tee.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/standard/tee.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/standard/tee.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/standard/tee.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/test/bhmtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/test/bhmtest.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/test/bhmtest.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/test/bhmtest.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/test/clptest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/test/clptest.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/test/clptest.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/test/clptest.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/athdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/athdesc.h -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/bitrate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/bitrate.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/bitrate.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/bitrate.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/path.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/path.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/rc4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/rc4.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/rc4.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/rc4.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/rxstats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/rxstats.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/rxstats.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/rxstats.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/setrts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/setrts.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/setrts.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/setrts.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/wifiseq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/wifiseq.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/wifi/wifiseq.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/wifi/wifiseq.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xcmp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xcmp.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xcmp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xcmp.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xiacache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xiacache.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xiacache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xiacache.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xiapaint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xiapaint.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xiapaint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xiapaint.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xiaprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xiaprint.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xiaprint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xiaprint.hh -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xlog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xlog.cc -------------------------------------------------------------------------------- /click-2.0.1/elements/xia/xlog.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/elements/xia/xlog.hh -------------------------------------------------------------------------------- /click-2.0.1/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/README -------------------------------------------------------------------------------- /click-2.0.1/etc/click.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/click.vim -------------------------------------------------------------------------------- /click-2.0.1/etc/debian-2.4.26-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/debian-2.4.26-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/diagrams/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/diagrams/Makefile -------------------------------------------------------------------------------- /click-2.0.1/etc/diagrams/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/diagrams/README -------------------------------------------------------------------------------- /click-2.0.1/etc/diagrams/elements.mp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/diagrams/elements.mp -------------------------------------------------------------------------------- /click-2.0.1/etc/diagrams/elemfig.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/diagrams/elemfig.sty -------------------------------------------------------------------------------- /click-2.0.1/etc/elementmap.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/elementmap.xsl -------------------------------------------------------------------------------- /click-2.0.1/etc/freebsd-4.3-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/freebsd-4.3-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/libclick/DISTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/libclick/DISTFILES -------------------------------------------------------------------------------- /click-2.0.1/etc/libclick/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/libclick/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/etc/linux-2.4.18-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/linux-2.4.18-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/linux-2.4.20-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/linux-2.4.20-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/linux-2.4.21-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/linux-2.4.21-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/linux-2.4.26-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/linux-2.4.26-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/linux-2.4.32-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/linux-2.4.32-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/linux-2.6.19.2-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/linux-2.6.19.2-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/linux-2.6.24.7-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/linux-2.6.24.7-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/ns-2.30-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/ns-2.30-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/ns-2.34-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/ns-2.34-patch -------------------------------------------------------------------------------- /click-2.0.1/etc/pkg-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/pkg-Makefile -------------------------------------------------------------------------------- /click-2.0.1/etc/pkg-bsdmodule.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/pkg-bsdmodule.mk -------------------------------------------------------------------------------- /click-2.0.1/etc/pkg-config.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/pkg-config.mk.in -------------------------------------------------------------------------------- /click-2.0.1/etc/pkg-linuxmodule.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/pkg-linuxmodule.mk -------------------------------------------------------------------------------- /click-2.0.1/etc/pkg-userlevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/pkg-userlevel.mk -------------------------------------------------------------------------------- /click-2.0.1/etc/samplellrpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/samplellrpc/Makefile -------------------------------------------------------------------------------- /click-2.0.1/etc/samplellrpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/samplellrpc/README -------------------------------------------------------------------------------- /click-2.0.1/etc/samplepackage/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/etc/samplepackage/README -------------------------------------------------------------------------------- /click-2.0.1/include/click/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/.gitignore -------------------------------------------------------------------------------- /click-2.0.1/include/click/archive.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/archive.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/args.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/args.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/atomic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/atomic.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/bigint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/bigint.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/clp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/clp.h -------------------------------------------------------------------------------- /click-2.0.1/include/click/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/crc32.h -------------------------------------------------------------------------------- /click-2.0.1/include/click/dequeue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/dequeue.cc -------------------------------------------------------------------------------- /click-2.0.1/include/click/dequeue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/dequeue.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/driver.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/driver.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/element.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/element.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/error.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/error.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/ewma.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/ewma.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/gaprate.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/gaprate.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/glue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/glue.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/handler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/handler.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/hashmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/hashmap.cc -------------------------------------------------------------------------------- /click-2.0.1/include/click/hashmap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/hashmap.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/heap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/heap.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/ino.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/ino.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/iptable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/iptable.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/lexer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/lexer.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/list.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/list.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/llrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/llrpc.h -------------------------------------------------------------------------------- /click-2.0.1/include/click/master.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/master.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/md5.h -------------------------------------------------------------------------------- /click-2.0.1/include/click/package.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/package.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/packet.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/packet.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/pair.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/pair.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/router.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/router.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/simclick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/simclick.h -------------------------------------------------------------------------------- /click-2.0.1/include/click/skbmgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/skbmgr.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/string.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/string.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/sync.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/sync.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/task.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/task.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/timer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/timer.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/vector.cc -------------------------------------------------------------------------------- /click-2.0.1/include/click/vector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/vector.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/xiapath.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/xiapath.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/xiautil.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/xiautil.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/xid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/xid.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/xidpair.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/xidpair.hh -------------------------------------------------------------------------------- /click-2.0.1/include/click/zipf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/click/zipf.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/dhcp.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/ether.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/fddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/fddi.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/icmp.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/icmp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/icmp6.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/ip.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/ip6.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/llc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/llc.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/ppp.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/tcp.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/udp.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/wifi.h -------------------------------------------------------------------------------- /click-2.0.1/include/clicknet/xia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/include/clicknet/xia.h -------------------------------------------------------------------------------- /click-2.0.1/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/install-sh -------------------------------------------------------------------------------- /click-2.0.1/installch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/installch -------------------------------------------------------------------------------- /click-2.0.1/installch.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/installch.in -------------------------------------------------------------------------------- /click-2.0.1/lib/archive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/archive.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/args.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/atomic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/atomic.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/bighashmap_arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/bighashmap_arena.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/bitvector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/bitvector.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/clp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/clp.c -------------------------------------------------------------------------------- /click-2.0.1/lib/confparse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/confparse.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/crc32.c -------------------------------------------------------------------------------- /click-2.0.1/lib/driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/driver.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/element.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/elemfilter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/elemfilter.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/error-syslog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/error-syslog.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/error.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/etheraddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/etheraddress.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/exportstub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/exportstub.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/fromfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/fromfile.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/gaprate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/gaprate.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/glue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/glue.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/handlercall.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/handlercall.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/hashallocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/hashallocator.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/in_cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/in_cksum.c -------------------------------------------------------------------------------- /click-2.0.1/lib/ino.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/ino.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/integers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/integers.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/ip6address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/ip6address.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/ip6flowid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/ip6flowid.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/ip6table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/ip6table.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/ipaddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/ipaddress.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/ipflowid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/ipflowid.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/iptable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/iptable.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/lexer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/lexer.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/master.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/master.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/md5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/md5.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/nameinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/nameinfo.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/notifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/notifier.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/packet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/packet.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/router.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/router.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/routerthread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/routerthread.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/routervisitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/routervisitor.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/selectset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/selectset.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/straccum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/straccum.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/strerror.c -------------------------------------------------------------------------------- /click-2.0.1/lib/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/string.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/task.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/templatei.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/templatei.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/timer.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/timerset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/timerset.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/timestamp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/timestamp.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/userutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/userutils.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/variableenv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/variableenv.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/vectorv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/vectorv.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/xiacontentheader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/xiacontentheader.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/xiaextheader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/xiaextheader.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/xiaheader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/xiaheader.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/xiapath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/xiapath.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/xiasecurity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/xiasecurity.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/xiautil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/xiautil.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/xid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/xid.cc -------------------------------------------------------------------------------- /click-2.0.1/lib/xidpair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/lib/xidpair.cc -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/.packet.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/.packet.o.d -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/clickfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/clickfs.cc -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/config.cc -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/module.cc -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/moduleparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/moduleparm.h -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/proclikefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/proclikefs.c -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/proclikefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/proclikefs.h -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/read-pmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/read-pmc.c -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/sched.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/sched.cc -------------------------------------------------------------------------------- /click-2.0.1/linuxmodule/skbmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/linuxmodule/skbmgr.cc -------------------------------------------------------------------------------- /click-2.0.1/m4/click.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/m4/click.m4 -------------------------------------------------------------------------------- /click-2.0.1/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/missing -------------------------------------------------------------------------------- /click-2.0.1/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/mkinstalldirs -------------------------------------------------------------------------------- /click-2.0.1/ns/CUT_BinHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/ns/CUT_BinHeap.h -------------------------------------------------------------------------------- /click-2.0.1/ns/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/ns/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/ns/nsclick-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/ns/nsclick-test.cc -------------------------------------------------------------------------------- /click-2.0.1/ns/nsclick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/ns/nsclick.cc -------------------------------------------------------------------------------- /click-2.0.1/pathvars.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/pathvars.h.in -------------------------------------------------------------------------------- /click-2.0.1/stamp-h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /click-2.0.1/test/testie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/test/testie -------------------------------------------------------------------------------- /click-2.0.1/tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/tools/click-viz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/click-viz -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/eclasst.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/eclasst.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/eclasst.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/eclasst.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/elementmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/elementmap.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/elementmap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/elementmap.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/elementt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/elementt.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/elementt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/elementt.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/etraits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/etraits.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/etraits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/etraits.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/landmarkt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/landmarkt.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/landmarkt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/landmarkt.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/lexert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/lexert.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/lexert.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/lexert.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/lexertinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/lexertinfo.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/lexertinfo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/lexertinfo.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/processingt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/processingt.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/processingt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/processingt.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/routert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/routert.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/routert.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/routert.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/runparse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/runparse.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/runparse.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/runparse.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/toolutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/toolutils.cc -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/toolutils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/toolutils.hh -------------------------------------------------------------------------------- /click-2.0.1/tools/lib/vectori.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/tools/lib/vectori.cc -------------------------------------------------------------------------------- /click-2.0.1/userlevel/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/userlevel/Makefile.in -------------------------------------------------------------------------------- /click-2.0.1/userlevel/click.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/userlevel/click.cc -------------------------------------------------------------------------------- /click-2.0.1/userlevel/xia.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/click-2.0.1/userlevel/xia.proto -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/configure -------------------------------------------------------------------------------- /daemons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/Makefile -------------------------------------------------------------------------------- /daemons/common/XIARouter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/common/XIARouter.cc -------------------------------------------------------------------------------- /daemons/common/XIARouter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/common/XIARouter.hh -------------------------------------------------------------------------------- /daemons/common/csclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/common/csclient.cc -------------------------------------------------------------------------------- /daemons/common/csclient.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/common/csclient.hh -------------------------------------------------------------------------------- /daemons/nameserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/nameserver/Makefile -------------------------------------------------------------------------------- /daemons/nameserver/ns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/nameserver/ns.cc -------------------------------------------------------------------------------- /daemons/rendezvous/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/rendezvous/Makefile -------------------------------------------------------------------------------- /daemons/rendezvous/rvd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/rendezvous/rvd.cc -------------------------------------------------------------------------------- /daemons/visualizer/statsserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/visualizer/statsserver -------------------------------------------------------------------------------- /daemons/visualizer/xstats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/visualizer/xstats -------------------------------------------------------------------------------- /daemons/xhcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/xhcp/Makefile -------------------------------------------------------------------------------- /daemons/xhcp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/xhcp/README -------------------------------------------------------------------------------- /daemons/xhcp/xhcp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/xhcp/xhcp.hh -------------------------------------------------------------------------------- /daemons/xhcp/xhcp_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/xhcp/xhcp_client.cc -------------------------------------------------------------------------------- /daemons/xhcp/xhcp_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/xhcp/xhcp_server.cc -------------------------------------------------------------------------------- /daemons/xrouted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/xrouted/Makefile -------------------------------------------------------------------------------- /daemons/xrouted/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/xrouted/README -------------------------------------------------------------------------------- /daemons/xrouted/xrouted.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/xrouted/xrouted.cc -------------------------------------------------------------------------------- /daemons/xrouted/xrouted.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/daemons/xrouted/xrouted.hh -------------------------------------------------------------------------------- /etc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/etc/.gitignore -------------------------------------------------------------------------------- /etc/click/.gitignore: -------------------------------------------------------------------------------- 1 | xia_address.click 2 | 3 | -------------------------------------------------------------------------------- /etc/click/xia_constants.click: -------------------------------------------------------------------------------- 1 | ../../click/conf/xia_constants.click -------------------------------------------------------------------------------- /etc/click/xia_large_topology.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/etc/click/xia_large_topology.click -------------------------------------------------------------------------------- /etc/click/xia_local_topology.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/etc/click/xia_local_topology.click -------------------------------------------------------------------------------- /etc/click/xia_router_lib.click: -------------------------------------------------------------------------------- 1 | ../../click/conf/xia_router_lib.click -------------------------------------------------------------------------------- /etc/hosts.xia.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/etc/hosts.xia.example -------------------------------------------------------------------------------- /etc/log/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/etc/log/README -------------------------------------------------------------------------------- /etc/log/logrotate.d/xia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/etc/log/logrotate.d/xia -------------------------------------------------------------------------------- /etc/log/rsyslog.d/40-xia.conf: -------------------------------------------------------------------------------- 1 | local4.* /var/log/xia.log 2 | & ~ 3 | -------------------------------------------------------------------------------- /etc/sidmap.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/etc/sidmap.conf.example -------------------------------------------------------------------------------- /etc/xids.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/etc/xids.example -------------------------------------------------------------------------------- /experiments/DNS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/README -------------------------------------------------------------------------------- /experiments/DNS/Register/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/Register/Makefile -------------------------------------------------------------------------------- /experiments/DNS/Register/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/Register/README -------------------------------------------------------------------------------- /experiments/DNS/Register/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/Register/test.c -------------------------------------------------------------------------------- /experiments/DNS/XIAResolver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/XIAResolver/Makefile -------------------------------------------------------------------------------- /experiments/DNS/XIAResolver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/XIAResolver/README -------------------------------------------------------------------------------- /experiments/DNS/XIAResolver/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/XIAResolver/test.c -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/Atffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/Atffile -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/CHANGES -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/COPYRIGHT -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/FAQ -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/FAQ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/FAQ.xml -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/HISTORY -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/Makefile -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/README -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/aclocal.m4: -------------------------------------------------------------------------------- 1 | sinclude(./libtool.m4)dnl 2 | 3 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/bin/tests/dst/Ktest.+001+00002.key: -------------------------------------------------------------------------------- 1 | test. IN DNSKEY 49152 2 1 2 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/bin/tests/dst/Ktest.+003+49667.key: -------------------------------------------------------------------------------- 1 | test. IN DNSKEY 49152 2 3 2 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/bin/tests/system/ixfr/ans2/startme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/bin/tests/system/pkcs11/usepkcs11: -------------------------------------------------------------------------------- 1 | This test relies on PKCS#11! 2 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/bind.keys -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/config.h -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/configure -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/contrib/dlz/drivers/dlz_dlopen_driver.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/contrib/dlz/drivers/include/dlz/dlz_dlopen_driver.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/contrib/nslint-2.1a3/VERSION: -------------------------------------------------------------------------------- 1 | 2.1a3 2 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/contrib/pkcs11-keygen/README: -------------------------------------------------------------------------------- 1 | Moved to ${top}/bin/pkcs11 2 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/lib/tests/T_testlist.imp: -------------------------------------------------------------------------------- 1 | #! . 2 | 3 | T_testlist 4 | -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/libtool -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/ltmain.sh -------------------------------------------------------------------------------- /experiments/DNS/bind-9.8.1/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/bind-9.8.1/version -------------------------------------------------------------------------------- /experiments/DNS/bind_demo_conf/hosts_xia: -------------------------------------------------------------------------------- 1 | #xia host list 2 | -------------------------------------------------------------------------------- /experiments/DNS/demo_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/DNS/demo_setup.sh -------------------------------------------------------------------------------- /experiments/ftp/ftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/Makefile -------------------------------------------------------------------------------- /experiments/ftp/ftp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/Makefile.am -------------------------------------------------------------------------------- /experiments/ftp/ftp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/Makefile.in -------------------------------------------------------------------------------- /experiments/ftp/ftp/bld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/bld -------------------------------------------------------------------------------- /experiments/ftp/ftp/cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/cmds.c -------------------------------------------------------------------------------- /experiments/ftp/ftp/cmdtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/cmdtab.c -------------------------------------------------------------------------------- /experiments/ftp/ftp/domacro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/domacro.c -------------------------------------------------------------------------------- /experiments/ftp/ftp/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/extern.h -------------------------------------------------------------------------------- /experiments/ftp/ftp/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/ftp.c -------------------------------------------------------------------------------- /experiments/ftp/ftp/ftp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/ftp_var.h -------------------------------------------------------------------------------- /experiments/ftp/ftp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/main.c -------------------------------------------------------------------------------- /experiments/ftp/ftp/ruserpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/ftp/ruserpass.c -------------------------------------------------------------------------------- /experiments/ftp/tinyftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/tinyftp/Makefile -------------------------------------------------------------------------------- /experiments/ftp/tinyftp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/tinyftp/README -------------------------------------------------------------------------------- /experiments/ftp/tinyftp/bld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/tinyftp/bld -------------------------------------------------------------------------------- /experiments/ftp/tinyftp/cmdparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/tinyftp/cmdparser.h -------------------------------------------------------------------------------- /experiments/ftp/tinyftp/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/tinyftp/defines.h -------------------------------------------------------------------------------- /experiments/ftp/tinyftp/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/tinyftp/fileutils.c -------------------------------------------------------------------------------- /experiments/ftp/tinyftp/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/tinyftp/fileutils.h -------------------------------------------------------------------------------- /experiments/ftp/tinyftp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/tinyftp/main.c -------------------------------------------------------------------------------- /experiments/ftp/tinyftp/opts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/ftp/tinyftp/opts.c -------------------------------------------------------------------------------- /experiments/fwd_perf/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/fwd_perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/Makefile -------------------------------------------------------------------------------- /experiments/fwd_perf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/README -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/Makefile -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/common.tex -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/dag_fb0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/dag_fb0.png -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/dag_fb0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/dag_fb0.tex -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/dag_fb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/dag_fb1.png -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/dag_fb1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/dag_fb1.tex -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/dag_fb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/dag_fb2.png -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/dag_fb2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/dag_fb2.tex -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/dag_fb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/dag_fb3.png -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/dag_fb3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/dag_fb3.tex -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/hdr_fb0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/hdr_fb0.png -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/hdr_fb0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/hdr_fb0.svg -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/hdr_fb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/hdr_fb1.png -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/hdr_fb1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/hdr_fb1.svg -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/hdr_fb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/hdr_fb2.png -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/hdr_fb2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/hdr_fb2.svg -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/hdr_fb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/hdr_fb3.png -------------------------------------------------------------------------------- /experiments/fwd_perf/fig/hdr_fb3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/fig/hdr_fb3.svg -------------------------------------------------------------------------------- /experiments/fwd_perf/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/launch.py -------------------------------------------------------------------------------- /experiments/fwd_perf/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/main.py -------------------------------------------------------------------------------- /experiments/fwd_perf/main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/main.ui -------------------------------------------------------------------------------- /experiments/fwd_perf/ui_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/fwd_perf/ui_main.py -------------------------------------------------------------------------------- /experiments/io_engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/io_engine/.gitignore -------------------------------------------------------------------------------- /experiments/io_engine/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/io_engine/COPYING -------------------------------------------------------------------------------- /experiments/io_engine/driver/ixgbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/io_engine/driver/ixgbe.h -------------------------------------------------------------------------------- /experiments/io_engine/include/ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/io_engine/include/ps.h -------------------------------------------------------------------------------- /experiments/io_engine/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/io_engine/lib/Makefile -------------------------------------------------------------------------------- /experiments/io_engine/lib/pslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/io_engine/lib/pslib.c -------------------------------------------------------------------------------- /experiments/migration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/.gitignore -------------------------------------------------------------------------------- /experiments/migration/INSTRUCTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/INSTRUCTION -------------------------------------------------------------------------------- /experiments/migration/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/common.sh -------------------------------------------------------------------------------- /experiments/migration/migration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/migration.pdf -------------------------------------------------------------------------------- /experiments/migration/output_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/output_client -------------------------------------------------------------------------------- /experiments/migration/output_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/output_server -------------------------------------------------------------------------------- /experiments/migration/plot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/plot.dat -------------------------------------------------------------------------------- /experiments/migration/plot.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/plot.gnuplot -------------------------------------------------------------------------------- /experiments/migration/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/plot.py -------------------------------------------------------------------------------- /experiments/migration/tap-down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/tap-down.sh -------------------------------------------------------------------------------- /experiments/migration/tap-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/migration/tap-up.sh -------------------------------------------------------------------------------- /experiments/planetlab/4ID_topo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/4ID_topo -------------------------------------------------------------------------------- /experiments/planetlab/IPLATLON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/IPLATLON -------------------------------------------------------------------------------- /experiments/planetlab/backbone_topo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/backbone_topo -------------------------------------------------------------------------------- /experiments/planetlab/bin-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/bin-files -------------------------------------------------------------------------------- /experiments/planetlab/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/clean.py -------------------------------------------------------------------------------- /experiments/planetlab/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/id_rsa -------------------------------------------------------------------------------- /experiments/planetlab/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/id_rsa.pub -------------------------------------------------------------------------------- /experiments/planetlab/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/init.sh -------------------------------------------------------------------------------- /experiments/planetlab/libc.conf: -------------------------------------------------------------------------------- 1 | /usr/local/lib -------------------------------------------------------------------------------- /experiments/planetlab/logs/uname-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/logs/uname-log -------------------------------------------------------------------------------- /experiments/planetlab/names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/names -------------------------------------------------------------------------------- /experiments/planetlab/plot/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/plot/plot.py -------------------------------------------------------------------------------- /experiments/planetlab/plot/plot2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/plot/plot2.py -------------------------------------------------------------------------------- /experiments/planetlab/refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/refresh.sh -------------------------------------------------------------------------------- /experiments/planetlab/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/run_all.py -------------------------------------------------------------------------------- /experiments/planetlab/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/experiments/planetlab/s -------------------------------------------------------------------------------- /experiments/planetlab/scripts/rpyc/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/planetlab/scripts/rpyc/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Utilities (not part of the core protocol) 3 | """ 4 | 5 | -------------------------------------------------------------------------------- /log/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/log/README -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | drink 2 | firehose 3 | 4 | -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/boottest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/boottest -------------------------------------------------------------------------------- /tools/drink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/drink.c -------------------------------------------------------------------------------- /tools/firehose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/firehose.c -------------------------------------------------------------------------------- /tools/geni/.gitignore: -------------------------------------------------------------------------------- 1 | xiahosts 2 | -------------------------------------------------------------------------------- /tools/geni/buildxia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/geni/buildxia.sh -------------------------------------------------------------------------------- /tools/geni/geni_rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/geni/geni_rspec -------------------------------------------------------------------------------- /tools/geni/xia-2r-2h.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/geni/xia-2r-2h.rspec -------------------------------------------------------------------------------- /tools/geni/xia-2r-2h.rspec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/geni/xia-2r-2h.rspec.template -------------------------------------------------------------------------------- /tools/geni/xiaboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/geni/xiaboot -------------------------------------------------------------------------------- /tools/geni/xiahosts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/geni/xiahosts.template -------------------------------------------------------------------------------- /tools/xtunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/tools/xtunnel -------------------------------------------------------------------------------- /xia.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XIA-Project/xia-core/HEAD/xia.sublime-project --------------------------------------------------------------------------------