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

Side by Side Diff: src/internet/wscript

Issue 6463048: Codel, fq_codel in ns3
Patch Set: Created 11 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 import Options 5 import Options
6 import Logs 6 import Logs
7 import Utils 7 import Utils
8 import Task 8 import Task
9 9
10 # Required NSC version 10 # Required NSC version
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'helper/ipv4-global-routing-helper.cc', 176 'helper/ipv4-global-routing-helper.cc',
177 'helper/internet-stack-helper.cc', 177 'helper/internet-stack-helper.cc',
178 'helper/internet-trace-helper.cc', 178 'helper/internet-trace-helper.cc',
179 'helper/ipv4-address-helper.cc', 179 'helper/ipv4-address-helper.cc',
180 'helper/ipv4-interface-container.cc', 180 'helper/ipv4-interface-container.cc',
181 'helper/ipv4-routing-helper.cc', 181 'helper/ipv4-routing-helper.cc',
182 'helper/ipv6-address-helper.cc', 182 'helper/ipv6-address-helper.cc',
183 'helper/ipv6-interface-container.cc', 183 'helper/ipv6-interface-container.cc',
184 'helper/ipv6-routing-helper.cc', 184 'helper/ipv6-routing-helper.cc',
185 'model/ipv6-address-generator.cc', 185 'model/ipv6-address-generator.cc',
186 'model/sfq-queue.cc',
187 'model/fq_codel-queue.cc',
186 ] 188 ]
187 189
188 internet_test = bld.create_ns3_module_test_library('internet') 190 internet_test = bld.create_ns3_module_test_library('internet')
189 internet_test.source = [ 191 internet_test.source = [
190 'test/global-route-manager-impl-test-suite.cc', 192 'test/global-route-manager-impl-test-suite.cc',
191 'test/ipv4-address-generator-test-suite.cc', 193 'test/ipv4-address-generator-test-suite.cc',
192 'test/ipv4-address-helper-test-suite.cc', 194 'test/ipv4-address-helper-test-suite.cc',
193 'test/ipv4-list-routing-test-suite.cc', 195 'test/ipv4-list-routing-test-suite.cc',
194 'test/ipv4-packet-info-tag-test-suite.cc', 196 'test/ipv4-packet-info-tag-test-suite.cc',
195 'test/ipv4-raw-test.cc', 197 'test/ipv4-raw-test.cc',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 'helper/ipv4-global-routing-helper.h', 275 'helper/ipv4-global-routing-helper.h',
274 'helper/internet-stack-helper.h', 276 'helper/internet-stack-helper.h',
275 'helper/internet-trace-helper.h', 277 'helper/internet-trace-helper.h',
276 'helper/ipv4-address-helper.h', 278 'helper/ipv4-address-helper.h',
277 'helper/ipv4-interface-container.h', 279 'helper/ipv4-interface-container.h',
278 'helper/ipv4-routing-helper.h', 280 'helper/ipv4-routing-helper.h',
279 'helper/ipv6-address-helper.h', 281 'helper/ipv6-address-helper.h',
280 'helper/ipv6-interface-container.h', 282 'helper/ipv6-interface-container.h',
281 'helper/ipv6-routing-helper.h', 283 'helper/ipv6-routing-helper.h',
282 'model/ipv6-address-generator.h', 284 'model/ipv6-address-generator.h',
285 'model/sfq-queue.h',
286 'model/fq_codel-queue.h',
283 ] 287 ]
284 288
285 if bld.env['NSC_ENABLED']: 289 if bld.env['NSC_ENABLED']:
286 obj.source.append ('model/nsc-tcp-socket-impl.cc') 290 obj.source.append ('model/nsc-tcp-socket-impl.cc')
287 obj.source.append ('model/nsc-tcp-l4-protocol.cc') 291 obj.source.append ('model/nsc-tcp-l4-protocol.cc')
288 obj.source.append ('model/nsc-tcp-socket-factory-impl.cc') 292 obj.source.append ('model/nsc-tcp-socket-factory-impl.cc')
289 obj.source.append ('model/nsc-sysctl.cc') 293 obj.source.append ('model/nsc-sysctl.cc')
290 headers.source.append('model/nsc-tcp-l4-protocol.h') 294 headers.source.append('model/nsc-tcp-l4-protocol.h')
291 obj.use.append('DL') 295 obj.use.append('DL')
292 internet_test.use.append('DL') 296 internet_test.use.append('DL')
293 297
294 if (bld.env['ENABLE_EXAMPLES']): 298 if (bld.env['ENABLE_EXAMPLES']):
295 bld.add_subdirs('examples') 299 bld.add_subdirs('examples')
296 300
297 bld.ns3_python_bindings() 301 bld.ns3_python_bindings()
298 302
OLDNEW

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