Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(690)

Side by Side Diff: src/internet/wscript

Issue 328380044: Patch for GSOC Project : Framework for TCP Prague simulations in ns-3
Patch Set: Created 6 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- 1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2 import os 2 import os
3 import sys 3 import sys
4 4
5 from waflib import Options, Logs, Utils, Task 5 from waflib import Options, Logs, Utils, Task
6 6
7 7
8 # Required NSC version 8 # Required NSC version
9 NSC_RELEASE_NAME = "nsc-0.5.3" 9 NSC_RELEASE_NAME = "nsc-0.5.3"
10 10
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 'model/icmpv6-l4-protocol.cc', 146 'model/icmpv6-l4-protocol.cc',
147 'model/tcp-socket-base.cc', 147 'model/tcp-socket-base.cc',
148 'model/tcp-highspeed.cc', 148 'model/tcp-highspeed.cc',
149 'model/tcp-hybla.cc', 149 'model/tcp-hybla.cc',
150 'model/tcp-vegas.cc', 150 'model/tcp-vegas.cc',
151 'model/tcp-congestion-ops.cc', 151 'model/tcp-congestion-ops.cc',
152 'model/tcp-westwood.cc', 152 'model/tcp-westwood.cc',
153 'model/tcp-scalable.cc',· 153 'model/tcp-scalable.cc',·
154 'model/tcp-veno.cc', 154 'model/tcp-veno.cc',
155 'model/tcp-bic.cc', 155 'model/tcp-bic.cc',
156 'model/tcp-dctcp.cc',
156 'model/tcp-yeah.cc', 157 'model/tcp-yeah.cc',
157 'model/tcp-ledbat.cc', 158 'model/tcp-ledbat.cc',
158 'model/tcp-illinois.cc', 159 'model/tcp-illinois.cc',
159 'model/tcp-htcp.cc', 160 'model/tcp-htcp.cc',
160 'model/tcp-rx-buffer.cc', 161 'model/tcp-rx-buffer.cc',
161 'model/tcp-tx-buffer.cc', 162 'model/tcp-tx-buffer.cc',
162 'model/tcp-option.cc', 163 'model/tcp-option.cc',
163 'model/tcp-option-rfc793.cc', 164 'model/tcp-option-rfc793.cc',
164 'model/tcp-option-winscale.cc', 165 'model/tcp-option-winscale.cc',
165 'model/tcp-option-ts.cc', 166 'model/tcp-option-ts.cc',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 'test/tcp-veno-test.cc', 263 'test/tcp-veno-test.cc',
263 'test/tcp-bic-test.cc', 264 'test/tcp-bic-test.cc',
264 'test/tcp-yeah-test.cc', 265 'test/tcp-yeah-test.cc',
265 'test/tcp-illinois-test.cc', 266 'test/tcp-illinois-test.cc',
266 'test/tcp-htcp-test.cc', 267 'test/tcp-htcp-test.cc',
267 'test/tcp-ledbat-test.cc', 268 'test/tcp-ledbat-test.cc',
268 'test/tcp-zero-window-test.cc', 269 'test/tcp-zero-window-test.cc',
269 'test/tcp-pkts-acked-test.cc', 270 'test/tcp-pkts-acked-test.cc',
270 'test/tcp-rtt-estimation.cc', 271 'test/tcp-rtt-estimation.cc',
271 'test/tcp-bytes-in-flight-test.cc', 272 'test/tcp-bytes-in-flight-test.cc',
273 'test/tcp-ecn-test.cc',
274 'test/tcp-dctcp-test.cc',
275 'test/tcp-dual-queue-test.cc',
272 'test/tcp-advertised-window-test.cc', 276 'test/tcp-advertised-window-test.cc',
273 'test/udp-test.cc', 277 'test/udp-test.cc',
274 'test/ipv6-address-generator-test-suite.cc', 278 'test/ipv6-address-generator-test-suite.cc',
275 'test/ipv6-dual-stack-test-suite.cc', 279 'test/ipv6-dual-stack-test-suite.cc',
276 'test/ipv6-fragmentation-test.cc', 280 'test/ipv6-fragmentation-test.cc',
277 'test/ipv6-forwarding-test.cc', 281 'test/ipv6-forwarding-test.cc',
278 'test/ipv6-ripng-test.cc', 282 'test/ipv6-ripng-test.cc',
279 'test/ipv6-address-helper-test-suite.cc', 283 'test/ipv6-address-helper-test-suite.cc',
280 'test/rtt-test.cc', 284 'test/rtt-test.cc',
281 'test/tcp-tx-buffer-test.cc', 285 'test/tcp-tx-buffer-test.cc',
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 'helper/ipv6-routing-helper.h', 376 'helper/ipv6-routing-helper.h',
373 'model/ipv6-address-generator.h', 377 'model/ipv6-address-generator.h',
374 'model/tcp-highspeed.h', 378 'model/tcp-highspeed.h',
375 'model/tcp-hybla.h', 379 'model/tcp-hybla.h',
376 'model/tcp-vegas.h', 380 'model/tcp-vegas.h',
377 'model/tcp-congestion-ops.h', 381 'model/tcp-congestion-ops.h',
378 'model/tcp-westwood.h', 382 'model/tcp-westwood.h',
379 'model/tcp-scalable.h', 383 'model/tcp-scalable.h',
380 'model/tcp-veno.h', 384 'model/tcp-veno.h',
381 'model/tcp-bic.h', 385 'model/tcp-bic.h',
386 'model/tcp-dctcp.h',
382 'model/tcp-yeah.h', 387 'model/tcp-yeah.h',
383 'model/tcp-illinois.h', 388 'model/tcp-illinois.h',
384 'model/tcp-htcp.h', 389 'model/tcp-htcp.h',
385 'model/tcp-ledbat.h', 390 'model/tcp-ledbat.h',
386 'model/tcp-socket-base.h', 391 'model/tcp-socket-base.h',
387 'model/tcp-tx-buffer.h', 392 'model/tcp-tx-buffer.h',
388 'model/tcp-rx-buffer.h', 393 'model/tcp-rx-buffer.h',
389 'model/rtt-estimator.h', 394 'model/rtt-estimator.h',
390 'model/ipv4-packet-probe.h', 395 'model/ipv4-packet-probe.h',
391 'model/ipv6-packet-probe.h', 396 'model/ipv6-packet-probe.h',
(...skipping 13 matching lines...) Expand all
405 obj.source.append ('model/nsc-sysctl.cc') 410 obj.source.append ('model/nsc-sysctl.cc')
406 headers.source.append('model/nsc-tcp-l4-protocol.h') 411 headers.source.append('model/nsc-tcp-l4-protocol.h')
407 obj.use.append('DL') 412 obj.use.append('DL')
408 internet_test.use.append('DL') 413 internet_test.use.append('DL')
409 414
410 if (bld.env['ENABLE_EXAMPLES']): 415 if (bld.env['ENABLE_EXAMPLES']):
411 bld.recurse('examples') 416 bld.recurse('examples')
412 417
413 bld.ns3_python_bindings() 418 bld.ns3_python_bindings()
414 419
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b