2016-03-08 10:46:01 -08:00
|
|
|
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
|
obj = bld.create_ns3_program('traffic-control',
|
2016-08-22 14:51:06 +02:00
|
|
|
['internet', 'point-to-point', 'applications', 'traffic-control', 'flow-monitor'])
|
2016-03-08 10:46:01 -08:00
|
|
|
obj.source = 'traffic-control.cc'
|
2016-08-08 00:21:22 +02:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('queue-discs-benchmark',
|
|
|
|
|
['internet', 'point-to-point', 'applications', 'internet-apps', 'traffic-control', 'flow-monitor'])
|
|
|
|
|
obj.source = 'queue-discs-benchmark.cc'
|
2017-05-28 10:21:38 +02:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('red-vs-fengadaptive', ['point-to-point', 'point-to-point-layout', 'internet', 'applications', 'traffic-control'])
|
|
|
|
|
obj.source = 'red-vs-fengadaptive.cc'
|
2017-05-28 10:21:43 +02:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('red-vs-nlred', ['point-to-point', 'point-to-point-layout', 'internet', 'applications', 'traffic-control'])
|
|
|
|
|
obj.source = 'red-vs-nlred.cc'
|