forked from aarizaq/inetmanet-3.x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.oppfeatures
882 lines (874 loc) · 27.1 KB
/
.oppfeatures
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
881
<features cppSourceRoots="src">
<feature
id="TCP_common"
name="TCP Common"
description = "The common part of TCP implementations"
initiallyEnabled = "true"
requires = ""
labels = ""
nedPackages = "
inet.transport.tcp_common
inet.applications.tcpapp
inet.util.headerserializers.tcp
"
extraSourceFolders = ""
compileFlags = "-DWITH_TCP_COMMON"
linkerFlags = ""
/>
<feature
id="TCP_INET"
name="TCP (INET)"
description = "TCP implementation (original INET implementation)"
initiallyEnabled = "true"
requires = "TCP_common"
labels = ""
nedPackages = "
inet.transport.tcp
"
extraSourceFolders = ""
compileFlags = "-DWITH_TCP_INET"
linkerFlags = ""
/>
<feature
id="TCP_lwIP"
name="TCP (lwIP)"
description = "TCP implementation based on lwIP (http://www.sics.se/~adam/lwip)"
initiallyEnabled = "false"
requires = "TCP_common"
labels = ""
nedPackages = "
inet.transport.tcp_lwip
"
extraSourceFolders = ""
compileFlags = "-DWITH_TCP_LWIP"
linkerFlags = ""
/>
<feature
id="TCP_NSC"
name="TCP (NSC)"
description = "TCP module based on Sam Jensen's Network Simulation Cradle
(NSC, http://www.wand.net.nz/~stj2/nsc) that wraps real
OS stacks: Linux, FreeBSD, OpenBSD and lwIP.
NSC must be downloaded and installed separately; read
inet/3rdparty/README for more information."
initiallyEnabled = "false"
requires = "TCP_common"
labels = ""
nedPackages = "
inet.transport.tcp_nsc
"
extraSourceFolders = ""
compileFlags = "-DWITH_TCP_NSC"
linkerFlags = ""
/>
<feature
id="IPv4"
name="IPv4 protocol"
description = "Basic IPv4 support"
initiallyEnabled = "true"
requires = ""
labels = ""
nedPackages = "
inet.networklayer.ipv4
inet.networklayer.autorouting.ipv4
inet.networklayer.arp
inet.nodes.inet
inet.util.headerserializers.ipv4
"
extraSourceFolders = ""
compileFlags = "-DWITH_IPv4"
linkerFlags = ""
/>
<feature
id="INET_examples"
name="INET examples"
description = "Examples for Basic Internet Protocols (IPv4, TCP, UDP)"
initiallyEnabled = "true"
requires = "IPv4 TCP_INET UDP Ethernet PPP"
labels = "protocols examples"
nedPackages = "
inet.examples.inet
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="IPv6"
name="IPv6 protocol"
description = "Basic IPv6 support"
initiallyEnabled = "true"
requires = ""
labels = ""
nedPackages = "
inet.networklayer.ipv6
inet.networklayer.autorouting.ipv6
inet.networklayer.icmpv6
inet.networklayer.ipv6tunneling
inet.nodes.ipv6
"
extraSourceFolders = ""
compileFlags = "-DWITH_IPv6"
linkerFlags = ""
/>
<feature
id="IPv6_examples"
name="IPv6 examples"
description = "Examples for Basic IPv6 support (IPv6)"
initiallyEnabled = "true"
requires = "IPv6 TCP_INET UDP Ethernet PPP"
labels = "protocols examples"
nedPackages = "
inet.examples.ipv6
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="xMIPv6"
name="Mobile IPv6 protocol (xMIPv6)"
description = "Mobile IPv6 support with Tunneling"
initiallyEnabled = "true"
requires = "IPv6"
labels = "protocols"
nedPackages = "
inet.networklayer.xmipv6
inet.nodes.xmipv6
"
extraSourceFolders = ""
compileFlags = "-DWITH_xMIPv6"
linkerFlags = ""
/>
<feature
id="xMIPv6_examples"
name="xMIPv6 examples"
description = "Examples for Mobile IPv6 support (xMIPv6)"
initiallyEnabled = "true"
requires = "xMIPv6 TCP_INET UDP Ethernet PPP Ieee80211 mobility"
labels = "protocols examples"
nedPackages = "
inet.examples.mobileipv6
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="UDP"
name="UDP protocol"
description = "UDP protocol"
initiallyEnabled = "true"
requires = ""
labels = ""
nedPackages = "
inet.transport.udp
inet.applications.udpapp
inet.util.headerserializers.udp
"
extraSourceFolders = ""
compileFlags = "-DWITH_UDP"
linkerFlags = ""
/>
<feature
id="RTP"
name="RTP"
description = "Real Time Protocol support"
initiallyEnabled = "true"
requires = "UDP IPv4"
labels = ""
nedPackages = "
inet.applications.rtpapp
inet.transport.rtp
"
extraSourceFolders = ""
compileFlags = "-DWITH_RTP"
linkerFlags = ""
/>
<feature
id="RTP_examples"
name="RTP examples"
description = "Examples for Real Time Protocol support (RTP)"
initiallyEnabled = "true"
requires = "RTP"
labels = "protocols examples"
nedPackages = "
inet.examples.rtp
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="SCTP"
name="SCTP"
description = "SCTP Protocol support"
initiallyEnabled = "true"
requires = "IPv4"
labels = ""
nedPackages = "
inet.applications.sctpapp
inet.transport.sctp
inet.util.headerserializers.sctp
"
extraSourceFolders = ""
compileFlags = "-DWITH_SCTP"
linkerFlags = ""
/>
<feature
id="SCTP_examples"
name="SCTP examples"
description = "Examples for SCTP"
initiallyEnabled = "true"
requires = "SCTP IPv4"
labels = "protocols examples"
nedPackages = "
inet.examples.sctp
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="DHCP"
name="DHCP"
description = "DHCP protocol that can be installed as an UDP application"
initiallyEnabled = "true"
requires = "UDP IPv4"
labels = "protocols dhcp"
nedPackages = "
inet.applications.dhcp
"
extraSourceFolders = ""
compileFlags = "-DWITH_DHCP"
linkerFlags = ""
/>
<feature
id="DHCP_examples"
name="DHCP examples (Ethernet)"
description = "examples for DHCP protocol"
initiallyEnabled = "true"
requires = "DHCP Ethernet mobility radio Ieee80211"
labels = "protocols dhcp"
nedPackages = "
inet.examples.dhcp
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="Ethernet"
name="Ethernet"
description = "IEEE 802.3 models (MAC, LLC, Encap) with support for classic
Ethernet (10Mbps), Fast Ethernet (100Mbps) and Gigabit Ethernet (1Gbps).
Includes a switch model with various relay unit implementations,
and also Ethernet-level traffic generators."
initiallyEnabled = "true"
requires = ""
labels = "protocols"
nedPackages = "
inet.applications.ethernet
inet.linklayer.ethernet
inet.nodes.ethernet
"
extraSourceFolders = ""
compileFlags = "-DWITH_ETHERNET"
linkerFlags = ""
/>
<feature
id="Ethernet_examples"
name="Ethernet examples"
description = "Examples for Ethernet"
requires = "Ethernet IPv4 TCP_INET"
labels = "protocols"
nedPackages = "
inet.examples.ethernet
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="PPP"
name="PPP"
description = "PPP protocol"
initiallyEnabled = "true"
requires = ""
labels = "protocols"
nedPackages = "
inet.linklayer.ppp
"
extraSourceFolders = ""
compileFlags = "-DWITH_PPP"
linkerFlags = ""
/>
<feature
id="ExternalInterface"
name="Network emulation support"
description = "Support for connecting the simulation to a real network.
The ExternalInterface module is responsible for sending/receiving
packets on the network."
initiallyEnabled = "true"
requires = "IPv4"
labels = "nic"
nedPackages = "
inet.linklayer.ext
"
extraSourceFolders = ""
compileFlags = "-DWITH_EXT_IF"
linkerFlags = ""
/>
<feature
id="ExternalInterface_examples"
name="Network emulation examples"
description = "Examples for network emulation"
initiallyEnabled = "true"
requires = "ExternalInterface Ethernet"
labels = "nic"
nedPackages = "
inet.examples.emulation
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="MPLS"
name="MPLS support (incl. LDP and RSVP-TE)"
description = "MPLS support"
requires = "TCP_INET UDP IPv4"
labels = "routing"
nedPackages = "
inet.networklayer.mpls inet.nodes.mpls
inet.networklayer.ldp
inet.networklayer.rsvp_te
inet.networklayer.ted
"
extraSourceFolders = ""
compileFlags = "-DWITH_MPLS"
linkerFlags = ""
/>
<feature
id="MPLS_examples"
name="MPLS examples"
description = "Examples for MPLS support"
initiallyEnabled = "true"
requires = "MPLS Ethernet PPP"
labels = "routing examples"
nedPackages = "
inet.examples.mpls
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="OSPFv2"
name="OSPFv2"
description = "OSPFv2 support"
initiallyEnabled = "true"
requires = "IPv4"
labels = "routing"
nedPackages = "
inet.networklayer.ospfv2
inet.nodes.ospfv2
"
extraSourceFolders = ""
compileFlags = "-DWITH_OSPFv2"
linkerFlags = ""
/>
<feature
id="OSPFv2_examples"
name="OSPFv2 examples"
description = "Examples for OSPFv2"
initiallyEnabled = "true"
requires = "OSPFv2 UDP IPv4 PPP Ethernet"
labels = "routing examples"
nedPackages = "
inet.examples.ospfv2
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="BGPv4"
name="BGPv4"
description = "BGP support"
initiallyEnabled = "true"
requires = "IPv4 OSPFv2 TCP_INET"
labels = "routing"
nedPackages = "
inet.networklayer.bgpv4
inet.nodes.bgp
"
extraSourceFolders = ""
compileFlags = "-DWITH_BGPv4"
linkerFlags = ""
/>
<feature
id="BGPv4_examples"
name="BGPv4 examples"
description = "Examples for BGPv4"
initiallyEnabled = "true"
requires = "BGPv4 TCP_INET UDP IPv4 PPP Ethernet"
labels = "routing examples"
nedPackages = "
inet.examples.bgpv4
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="MANET"
name="MANET routing"
description = "AdHoc MANET routing support (AODV, BATMAN, DSR, DSDV, DYMO, DYMO_FAU, OLSR)"
initiallyEnabled = "true"
requires = "IPv4 IPv6 UDP Ieee80211"
labels = "routing manet"
nedPackages = "
inet.networklayer.manetrouting
"
extraSourceFolders = ""
compileFlags = "-DWITH_MANET"
linkerFlags = ""
/>
<feature
id="MANET_examples"
name="MANET routing examples"
description = "Examples for the MANET routing protocols"
initiallyEnabled = "true"
requires = "MANET TCP_INET UDP IPv4"
labels = "routing manet examples"
nedPackages = "
inet.examples.manetrouting
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="mobility"
name="Mobility"
description = "Mobility support for wireless simulations"
initiallyEnabled = "true"
requires = ""
labels = ""
nedPackages = "
inet.mobility.models
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="mobility_examples"
name="Mobility examples"
description = "Examples for Mobility support"
initiallyEnabled = "true"
requires = "mobility"
labels = "examples"
nedPackages = "
inet.examples.mobility
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="traci"
name="TraCI"
description = "Integraion modules for TraCI"
initiallyEnabled = "true"
requires = "IPv4 mobility"
labels = ""
nedPackages = "
inet.applications.traci
inet.world.traci
"
extraSourceFolders = ""
compileFlags = "-DWITH_TRACI"
linkerFlags = ""
/>
<feature
id="traci_examples"
name="TraCI Examples"
description = "Simple examples for TraCI modules"
initiallyEnabled = "true"
requires = "traci radio Ieee80211 UDP"
labels = ""
nedPackages = "
inet.examples.traci
inet.examples.traci_launchd
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="radio"
name="Radio"
description = "Radio support for wireless simulations"
requires = ""
labels = ""
nedPackages = "
inet.battery.models
inet.linklayer.radio
inet.world.radio
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="Ieee80211"
name="802.11a/b/g/e (ad-hoc and infrastructure mode)"
description = "IEEE 802.11a/b/g/e ad-hoc and infrastucture mode NIC"
initiallyEnabled = "true"
requires = "mobility radio"
labels = "nic wireless"
nedPackages = "
inet.linklayer.ieee80211
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="wireless_examples"
name="wireless examples"
description = "wireless examples"
initiallyEnabled = "true"
requires = "TCP_INET UDP IPv4 Ethernet Ieee80211"
labels = "nic wireless"
nedPackages = "
inet.examples.adhoc
inet.examples.wireless
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="VoIPStream"
name="VoIPStream"
description = "Voice over IP tool. Required external libraries: libavcodec, libavformat libavutil"
initiallyEnabled = "false"
requires = "UDP"
labels = ""
nedPackages = "
inet.applications.voipstream
"
extraSourceFolders = ""
compileFlags = "-DWITH_VOIPSTREAM"
linkerFlags = ""
/>
<feature
id="VoIPStream_examples"
name="VoIPStream examples"
description = "Example VoIP simulations"
initiallyEnabled = "false"
requires = "VoIPStream IPv4 Ethernet"
labels = "examples"
nedPackages = "
inet.examples.voipstream
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="SimpleVoIP"
name="SimpleVoIP"
description = "A simplified VoIP model with MOS measurement capability"
initiallyEnabled = "true"
requires = "UDP"
labels = ""
nedPackages = "
inet.applications.voip
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="SimpleVoIP_examples"
name="SimpleVoIP examples"
description = "Example VoIP simulations"
initiallyEnabled = "true"
requires = "SimpleVoIP IPv4 Ethernet InternetCloud"
labels = "examples"
nedPackages = "
inet.examples.voip
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="HttpTools"
name="HttpTools"
description = "Components for web traffic simulation.
This is a port of Kristjan Jonsson's HttpTools,
see http://code.google.com/p/omnet-httptools/."
initiallyEnabled = "true"
requires = "TCP_common"
labels = "application http web"
nedPackages = "
inet.applications.httptools
inet.nodes.httptools
inet.world.httptools
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="HttpTools_examples_direct"
name="HttpTools examples with direct sending"
description = "HttpTools examples that do not use underlying protocol layers"
initiallyEnabled = "true"
requires = "HttpTools"
labels = "examples http web"
nedPackages = "
inet.examples.httptools.direct
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="HttpTools_examples_socket"
name="HttpTools examples with socket mode"
description = "HttpTools examples that include the simulation of TCP and lower layers as well"
initiallyEnabled = "true"
requires = "HttpTools IPv4 Ethernet TCP_INET"
labels = "examples http web"
nedPackages = "
inet.examples.httptools.socket
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="DiffServ"
name="DiffServ"
description = "Components to implement Differentiated Services"
initiallyEnabled = "true"
requires = ""
labels = ""
nedPackages = "
inet.networklayer.diffserv
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="DiffServ_examples"
name="DiffServ examples"
description = "DiffServ examples"
initiallyEnabled = "true"
requires = "DiffServ PPP Ethernet IPv4 UDP"
labels = ""
nedPackages = "
inet.examples.diffserv
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="InternetCloud"
name="Internet Cloud"
description = "Components for simulate internet cloud"
initiallyEnabled = "true"
requires = "IPv4"
labels = ""
nedPackages = "
inet.networklayer.internetcloud
inet.nodes.internetcloud
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="InternetCloud_examples"
name="Internet Cloud examples"
description = "Internet Cloud examples."
initiallyEnabled = "true"
requires = "InternetCloud PPP Ethernet"
labels = ""
nedPackages = "
inet.examples.internetcloud
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="Ieee8021d"
name="Ieee802.1d Ieee802.1Q Ieee802.1AH protocols"
description = "Ieee802.1d Ieee802.1Q Ieee802.1AH protocols"
initiallyEnabled = "false"
requires = "Ethernet"
labels = ""
nedPackages = "
inet.linklayer.ieee8021d
inet.nodes.Ieee8021d
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="Ieee8021d_examples"
name="Ieee802.1d Ieee802.1Q Ieee802.1AH protocols Examples"
description = "Ieee802.1d Ieee802.1Q Ieee802.1AH protocols Examples"
initiallyEnabled = "false"
requires = "Ethernet Ieee8021d"
labels = ""
nedPackages = "
inet.examples.ieee802_1d
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="RSTP"
name="J-C Moureira RSTP"
description = "J-C Moureira RSTP implementation"
initiallyEnabled = "true"
requires = "Ethernet"
labels = ""
nedPackages = "
inet.linklayer.rstp
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="Ieee802154"
name="802.15.4 code"
description = "Wpan 802.15.4"
initiallyEnabled = "true"
requires = ""
labels = ""
nedPackages = "
inet.wpan.applications.Ieee802154TestApp
inet.wpan.Isabel.Base
inet.wpan.Isabel.Analysis
inet.wpan.linklayer.ieee802154
inet.wpan.networklayer.Ieee802154StarRouting
inet.wpan.nodes
"
extraSourceFolders = ""
compileFlags = "-DWITH_80215"
linkerFlags = ""
/>
<feature
id="BMAC"
name="BMac code"
description = "Wpan link layer BMAC protocol"
initiallyEnabled = "true"
requires = "Ieee802154"
labels = ""
nedPackages = "
inet.wpan.linklayer.bmac
"
extraSourceFolders = ""
compileFlags = "-DWITH_BMAC"
linkerFlags = ""
/>
<feature
id="HIP"
name="Host Identity Protocol"
description = "Host Identity Protocol"
initiallyEnabled = "false"
requires = "UDP IPv6 Ethernet Ieee80211"
labels = ""
nedPackages = "
inet.underTest.hip
"
extraSourceFolders = ""
compileFlags = "-DWITH_HIP"
linkerFlags = ""
/>
<feature
id="Ieee80211_mesh"
name="802.11a/b/g/e (mesh networking mode)"
description = "IEEE 802.11a/b/g/e NIC supporting mesh networking"
initiallyEnabled = "true"
requires = "mobility radio TCP_INET MANET OSPFv2 MPLS UDP IPv4 IPv6"
labels = "nic wireless mesh"
nedPackages = "
inet.linklayer.ieee80211mesh
"
extraSourceFolders = ""
compileFlags = "-DWITH_80211MESH"
linkerFlags = ""
/>
<feature
id="LTE4Gsim"
name="4 gsim LTE model"
description = "4 gsim LTE model"
initiallyEnabled = "false"
requires = "mobility radio TCP_INET MANET OSPFv2 MPLS UDP IPv4 IPv6 SCTP"
labels = ""
nedPackages = "
inet.underTest._4gsim
"
extraSourceFolders = ""
compileFlags = "-DWITH_4GSIM"
linkerFlags = ""
/>
<feature
id="WIMAX"
name="wimax"
description = "under test WIMAX model"
initiallyEnabled = "false"
requires = "mobility radio TCP_INET MANET OSPFv2 MPLS UDP IPv4 IPv6 SCTP"
labels = ""
nedPackages = "
inet.underTest.wimax
"
extraSourceFolders = ""
compileFlags = "-DWITH_WIMAX"
linkerFlags = ""
/>
<feature
id="WIMAX_examples"
name="WIMAX Examples"
description = "WIMAX Examples"
initiallyEnabled = "false"
requires = "WIMAX"
labels = ""
nedPackages = "
inet.examples.WIMAX.WiMAXHandover
inet.examples.WIMAX.WiMAXQoS
"
extraSourceFolders = ""
compileFlags = ""
linkerFlags = ""
/>
<feature
id="Ieee80211Extensions"
name="Ieee80211Extensions"
description = "under test Ieee80211Extensions model"
initiallyEnabled = "false"
requires = "mobility radio TCP_INET MANET OSPFv2 MPLS UDP IPv4 IPv6 SCTP"
labels = ""
nedPackages = "
inet.underTest.Ieee80211
"
extraSourceFolders = ""
compileFlags = "-DWITH_IEEE80211EXT"
linkerFlags = ""
/>
</features>