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-nsc-lfn',
|
2011-03-07 16:59:09 -08:00
|
|
|
['point-to-point', 'applications', 'internet'])
|
2009-10-06 19:34:29 -07:00
|
|
|
obj.source = 'tcp-nsc-lfn.cc'
|
|
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('tcp-nsc-zoo',
|
2011-05-06 13:21:20 -07:00
|
|
|
['csma', 'internet', 'applications'])
|
2009-10-06 19:34:29 -07:00
|
|
|
obj.source = 'tcp-nsc-zoo.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
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('tcp-nsc-comparison',
|
2013-04-19 19:35:23 +02:00
|
|
|
['point-to-point', 'internet', 'applications', 'flow-monitor'])
|
2013-03-29 10:27:53 -04:00
|
|
|
|
|
|
|
|
obj.source = 'tcp-nsc-comparison.cc'
|
2013-04-18 15:57:07 -04:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('tcp-variants-comparison',
|
|
|
|
|
['point-to-point', 'internet', 'applications', 'flow-monitor'])
|
|
|
|
|
|
|
|
|
|
obj.source = 'tcp-variants-comparison.cc'
|
|
|
|
|
|