Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added smooth-start
  • Loading branch information
AsavariLimaye authored Apr 5, 2017
commit aa99e797019c79f7c58f2377da131284bacbc13a
22 changes: 6 additions & 16 deletions src/internet/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,12 @@ def build(bld):
'model/tcp-hybla.cc',
'model/tcp-vegas.cc',
'model/tcp-congestion-ops.cc',
'model/smooth-start.cc',
'model/tcp-westwood.cc',
'model/tcp-scalable.cc',
'model/tcp-veno.cc',
'model/tcp-bic.cc',
'model/tcp-yeah.cc',
'model/tcp-ledbat.cc',
'model/tcp-illinois.cc',
'model/tcp-htcp.cc',
'model/tcp-rx-buffer.cc',
Expand All @@ -163,8 +163,6 @@ def build(bld):
'model/tcp-option-rfc793.cc',
'model/tcp-option-winscale.cc',
'model/tcp-option-ts.cc',
'model/tcp-option-sack-permitted.cc',
'model/tcp-option-sack.cc',
'model/ipv4-packet-info-tag.cc',
'model/ipv6-packet-info-tag.cc',
'model/ipv4-interface-address.cc',
Expand Down Expand Up @@ -235,6 +233,7 @@ def build(bld):
'test/ipv4-header-test.cc',
'test/ipv4-fragmentation-test.cc',
'test/ipv4-forwarding-test.cc',
'test/error-channel.cc',
'test/ipv4-test.cc',
'test/ipv4-static-routing-test-suite.cc',
'test/ipv4-global-routing-test-suite.cc',
Expand All @@ -245,7 +244,6 @@ def build(bld):
'test/ipv6-raw-test.cc',
'test/tcp-test.cc',
'test/tcp-timestamp-test.cc',
'test/tcp-sack-permitted-test.cc',
'test/tcp-wscaling-test.cc',
'test/tcp-option-test.cc',
'test/tcp-header-test.cc',
Expand All @@ -264,12 +262,10 @@ def build(bld):
'test/tcp-yeah-test.cc',
'test/tcp-illinois-test.cc',
'test/tcp-htcp-test.cc',
'test/tcp-ledbat-test.cc',
'test/tcp-zero-window-test.cc',
'test/tcp-pkts-acked-test.cc',
'test/tcp-rtt-estimation.cc',
'test/tcp-bytes-in-flight-test.cc',
'test/tcp-advertised-window-test.cc',
'test/udp-test.cc',
'test/ipv6-address-generator-test-suite.cc',
'test/ipv6-dual-stack-test-suite.cc',
Expand All @@ -278,8 +274,6 @@ def build(bld):
'test/ipv6-ripng-test.cc',
'test/ipv6-address-helper-test-suite.cc',
'test/rtt-test.cc',
'test/tcp-tx-buffer-test.cc',
'test/tcp-rx-buffer-test.cc',
'test/tcp-endpoint-bug2211.cc',
'test/tcp-datasentcb-test.cc',
'test/ipv4-rip-test.cc',
Expand All @@ -288,18 +282,16 @@ def build(bld):
privateheaders = bld(features='ns3privateheader')
privateheaders.module = 'internet'
privateheaders.source = [
'model/tcp-option-winscale.h',
'model/tcp-option-ts.h',
'model/tcp-option-rfc793.h',
]
headers = bld(features='ns3header')
headers.module = 'internet'
headers.source = [
'model/udp-header.h',
'model/tcp-header.h',
'model/tcp-option.h',
'model/tcp-option-winscale.h',
'model/tcp-option-ts.h',
'model/tcp-option-sack-permitted.h',
'model/tcp-option-sack.h',
'model/tcp-option-rfc793.h',
'model/icmpv4.h',
'model/icmpv6-header.h',
# used by routing
Expand All @@ -309,7 +301,6 @@ def build(bld):
'model/ipv6-extension.h',
'model/ipv6-extension-demux.h',
'model/ipv6-extension-header.h',
'model/ipv6-option.h',
'model/ipv6-option-header.h',
'model/arp-l3-protocol.h',
'model/udp-l4-protocol.h',
Expand Down Expand Up @@ -375,14 +366,14 @@ def build(bld):
'model/tcp-hybla.h',
'model/tcp-vegas.h',
'model/tcp-congestion-ops.h',
'model/smooth-start.h',
'model/tcp-westwood.h',
'model/tcp-scalable.h',
'model/tcp-veno.h',
'model/tcp-bic.h',
'model/tcp-yeah.h',
'model/tcp-illinois.h',
'model/tcp-htcp.h',
'model/tcp-ledbat.h',
'model/tcp-socket-base.h',
'model/tcp-tx-buffer.h',
'model/tcp-rx-buffer.h',
Expand Down Expand Up @@ -411,4 +402,3 @@ def build(bld):
bld.recurse('examples')

bld.ns3_python_bindings()