2009-10-06 19:34:29 -07:00
|
|
|
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
|
obj = bld.create_ns3_program('tcp-large-transfer',
|
2012-06-06 22:07:56 -07:00
|
|
|
['point-to-point', 'applications', 'internet'])
|
2009-10-06 19:34:29 -07:00
|
|
|
obj.source = 'tcp-large-transfer.cc'
|
|
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('tcp-star-server',
|
2011-03-07 16:59:09 -08:00
|
|
|
['point-to-point', 'applications', 'internet'])
|
2009-10-06 19:34:29 -07:00
|
|
|
obj.source = 'tcp-star-server.cc'
|
|
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('star',
|
2011-04-26 15:18:32 -07:00
|
|
|
['netanim', 'point-to-point', 'point-to-point-layout', 'applications', 'internet'])
|
2009-10-06 19:34:29 -07:00
|
|
|
obj.source = 'star.cc'
|
2010-12-16 20:24:14 -05:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('tcp-bulk-send',
|
2011-03-07 16:59:09 -08:00
|
|
|
['point-to-point', 'applications', 'internet'])
|
2010-12-16 20:24:14 -05:00
|
|
|
obj.source = 'tcp-bulk-send.cc'
|
2013-03-29 10:27:53 -04:00
|
|
|
|
2016-02-25 17:38:58 -08:00
|
|
|
obj = bld.create_ns3_program('tcp-pcap-nanosec-example',
|
|
|
|
|
['point-to-point', 'applications', 'internet'])
|
|
|
|
|
obj.source = 'tcp-pcap-nanosec-example.cc'
|
|
|
|
|
|
2016-03-08 10:48:27 -08:00
|
|
|
obj = bld.create_ns3_program('tcp-variants-comparison',
|
|
|
|
|
['point-to-point', 'internet', 'applications', 'flow-monitor'])
|
2013-04-18 15:57:07 -04:00
|
|
|
|
2016-03-08 10:48:27 -08:00
|
|
|
obj.source = 'tcp-variants-comparison.cc'
|
2017-12-14 21:19:02 +01:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('tcp-pacing',
|
|
|
|
|
['point-to-point', 'internet', 'applications', 'flow-monitor'])
|
|
|
|
|
|
|
|
|
|
obj.source = 'tcp-pacing.cc'
|
2020-01-24 09:49:56 -08:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('dctcp-example',
|
|
|
|
|
['core', 'network', 'internet', 'point-to-point', 'applications', 'traffic-control'])
|
|
|
|
|
obj.source = 'dctcp-example.cc'
|
2019-08-04 20:47:51 -07:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('tcp-linux-reno',
|
|
|
|
|
['point-to-point', 'internet', 'applications', 'traffic-control', 'network'])
|
|
|
|
|
|
|
|
|
|
obj.source = 'tcp-linux-reno.cc'
|
2020-12-13 20:42:38 -08:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('tcp-validation',
|
|
|
|
|
['point-to-point', 'internet', 'applications', 'traffic-control', 'network', 'internet-apps'])
|
|
|
|
|
|
|
|
|
|
obj.source = 'tcp-validation.cc'
|
2021-05-24 02:45:15 +05:30
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('tcp-bbr-example',
|
|
|
|
|
['point-to-point', 'internet', 'applications', 'traffic-control', 'network', 'internet-apps', 'flow-monitor'])
|
|
|
|
|
|
|
|
|
|
obj.source = 'tcp-bbr-example.cc'
|