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',
|
2011-03-07 16:59:09 -08: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'
|