forked from sysml/clickos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DISTFILES
880 lines (821 loc) · 11.7 KB
/
DISTFILES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
.:
AUTHORS
COPYING
DISTFILES
FAQ
INSTALL
LICENSE
Makefile.in
NEWS
README
aclocal.m4
apps
bsdmodule
click-buildtool.in
click-compile.in
click-mkelemmap
click.spec
conf
config-bsdmodule.h.in
config-linuxmodule.h.in
config-ns.h.in
config-userlevel.h.in
config.guess
config.h.in
config.mk.in
config.sub
configure
configure.in
depcomp
doc
drivers
elements
etc
include
install-sh
installch.in
lib
linuxmodule
m4
missing
mkinstalldirs
ns
pathvars.h.in
test
tools
userlevel
./apps:
ClickController
clicky
csclient
./apps/ClickController:
ClickController.java
ClickException.java
ControlSocket.java
NewConnectionDialog.java
Pair.java
README
RouterTreeModel.java
StringUtils.java
Util.java
./apps/clicky:
AUTHORS
Makefile.am
Makefile.in
NEWS
README
aclocal.m4
clicky.glade
clicky.gladep
clicky.gtkrc
config.h.in
configure
configure.ac
images
src
./apps/clicky/images:
throbber.gif
./apps/clicky/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
./apps/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
./conf:
click-mkclgw.pl
delay.click
dnsproxy.click
example.clgw
fake-iprouter.click
fastudpsrc.click
fromhost-tunnel.click
grid.click
icmp6error.click
ip.clickpat
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
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.click
test-ping-userlevel.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
./conf/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
./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
e1000-5.x
e1000-7.x
e1000-7.3.20-polling.patch
e1000-7.6.15.5-polling.patch
e1000e-0.4.1.7-2010-02-25.polling.patch
./drivers/e1000-4.x:
LICENSE
README
README-rtm
e1000.7
e1000.spec
ldistrib.txt
src
./drivers/e1000-4.x/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
./drivers/e1000-5.x:
LICENSE
README
e1000.7
e1000.spec
ldistrib.txt
src
./drivers/e1000-5.x/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
./drivers/e1000-7.x:
COPYING
README
e1000.7
e1000.spec
ldistrib.txt
pci.updates
src
./drivers/e1000-7.x/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
./etc:
README
click.vim
debian-2.4.26-patch
diagrams
elementmap.xsl
freebsd-4.3-patch
libclick
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.24.7-patch
linux-2.6.16.13-patch
linux-2.6.19.2-patch
ns-2.30-patch
ns-2.34-patch
pkg-Makefile
pkg-config.mk.in
pkg-linuxmodule-26.mk
pkg-linuxmodule.mk
pkg-bsdmodule.mk
pkg-userlevel.mk
samplellrpc
samplepackage
./etc/diagrams:
Makefile
README
elements.mp
elemfig.sty
samp01_examples.mp
samp02_processing.mp
samp03_routers.mp
samp04_iprouter.mp
samp05_other.mp
./etc/libclick:
DISTFILES
Makefile.in
lc-Makefile.in
lc-configure.ac
lc-libsrc-Makefile.in
./etc/samplellrpc:
Makefile
README
click-readcounter.c
./etc/samplepackage:
Makefile.in
README
configure
configure.ac
sampleelt.cc
sampleelt.hh
test.click
./include:
click
clicknet
./include/click:
algorithm.hh
archive.hh
args.hh
array_memory.hh
atomic.hh
bighashmap.cc
bighashmap.hh
bighashmap_arena.hh
bigint.hh
bitvector.hh
clp.h
confparse.hh
crc32.h
cxxprotect.h
cxxunprotect.h
deque.cc
deque.hh
dequeue.hh
driver.hh
element.hh
elemfilter.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
machine.hh
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
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
./include/click/standard:
addressinfo.hh
alignmentinfo.hh
errorelement.hh
portinfo.hh
scheduleinfo.hh
storage.hh
threadsched.hh
./include/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
./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.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
timer.cc
timerset.cc
timestamp.cc
userutils.cc
variableenv.cc
./linuxmodule:
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
./ns:
CUT_BinHeap.h
Makefile.in
nsclick-test.cc
nsclick.cc
./test:
IPRewriter
analysis
compound
ethernet
handlers
icmp
ip
linuxmodule
standard
tcpudp
testie
threads
tools
userlevel
./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
./test/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
./test/compound:
compact-01.testie
input-01.testie
overload-01.testie
variables-01.testie
./test/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
./test/handlers:
expansion-01.testie
handlercall-01.testie
kernel-01.testie
privatehandler-01.testie
./test/icmp:
ICMPError-sourceroute-01.testie
ICMPIPEncap-01.testie
ICMPPingEncap-01.testie
ICMPRewriter-01.testie
ICMPRewriter-02.testie
ICMPRewriter-03.testie
./test/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
./test/linuxmodule:
ToHost-01.testie
ToHost-01.testie
ToHost-udpsocket-01.testie
clickfs-01.testie
deviceup-01.testie
./test/standard:
BandwidthRatedUnqueue-01.testie
Classifier-01.testie
Clipboard-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
Resize-01.testie
Script-01.testie
Script-02.testie
StrideSched-01.testie
Unqueue-01.testie
bigint-01.testie
confparse-01.testie
deque-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
./test/tcpudp:
UDPIPEncap-01.testie
./test/threads:
StaticThreadSched-01.testie
./test/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
./test/userlevel:
ControlSocket-llrpc-01.testie
ControlSocket-llrpc-02.testie
Script-signal-01.testie
Script-signal-02.testie
Script-signal-03.testie
clp-01.testie
timer-systime-01.testie
timewarp-01.testie
iprouter-01.testie
uhotswap-01.testie
./tools:
Makefile.in
click-align
click-check
click-combine
click-devirtualize
click-fastclassifier
click-flatten
click-install
click-mkmindriver
click-pretty
click-undead
click-viz
click-xform
click2xml
lib
./tools/click-align:
Makefile.in
alignclass.cc
alignclass.hh
alignment.cc
alignment.hh
click-align.cc
./tools/click-check:
Makefile.in
click-check.cc
./tools/click-combine:
Makefile.in
click-combine.cc
click-uncombine.cc
./tools/click-devirtualize:
Makefile.in
click-devirtualize.cc
cxxclass.cc
cxxclass.hh
signature.cc
signature.hh
specializer.cc
specializer.hh
./tools/click-fastclassifier:
Makefile.in
click-fastclassifier.cc
click-fastclassifier.hh
fc_classifier.cc
fc_ipclassifier.cc
./tools/click-flatten:
Makefile.in
click-flatten.cc
./tools/click-install:
Makefile.in
click-install.cc
click-uninstall.cc
common.cc
common.hh
./tools/click-mkmindriver:
Makefile.in
click-mkmindriver.cc
./tools/click-pretty:
Makefile.in
click-pretty.cc
html.cc
html.hh
./tools/click-undead:
Makefile.in
click-undead.cc
./tools/click-xform:
Makefile.in
adjacency.cc
adjacency.hh
click-xform.cc
./tools/click2xml:
Makefile.in
click2xml.cc
clickconfig.dtd
xml2click.cc
xml2click.hh
./tools/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
./userlevel:
Makefile.in
click.cc