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

Delta Between Two Patch Sets: src/internet/wscript

Issue 110860043: SOCIS2014 - Tcp Options Review (Closed)
Left Patch Set: Worked on Tom's comments, patch set updated Created 9 years, 7 months ago
Right Patch Set: SOCIS Final Review: Tcp Option TimeStamp Created 9 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/internet/test/tcp-timestamp-test.cc ('k') | src/test/ns3tcp/ns3tcp-loss-test-suite.cc » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 'model/icmpv6-l4-protocol.cc', 139 'model/icmpv6-l4-protocol.cc',
140 'model/tcp-socket-base.cc', 140 'model/tcp-socket-base.cc',
141 'model/tcp-rfc793.cc', 141 'model/tcp-rfc793.cc',
142 'model/tcp-tahoe.cc', 142 'model/tcp-tahoe.cc',
143 'model/tcp-reno.cc', 143 'model/tcp-reno.cc',
144 'model/tcp-newreno.cc', 144 'model/tcp-newreno.cc',
145 'model/tcp-westwood.cc', 145 'model/tcp-westwood.cc',
146 'model/tcp-rx-buffer.cc', 146 'model/tcp-rx-buffer.cc',
147 'model/tcp-tx-buffer.cc', 147 'model/tcp-tx-buffer.cc',
148 'model/tcp-option.cc', 148 'model/tcp-option.cc',
149 'model/tcp-option-end.cc', 149 'model/tcp-option-rfc793.cc',
150 'model/tcp-option-nop.cc',
151 'model/tcp-option-mss.cc',
152 'model/tcp-option-winscale.cc', 150 'model/tcp-option-winscale.cc',
153 'model/tcp-option-sack-permitted.cc',
154 'model/tcp-option-sack.cc',
155 'model/tcp-option-snack.cc',
156 'model/tcp-option-ts.cc', 151 'model/tcp-option-ts.cc',
157 'model/ipv4-packet-info-tag.cc', 152 'model/ipv4-packet-info-tag.cc',
158 'model/ipv6-packet-info-tag.cc', 153 'model/ipv6-packet-info-tag.cc',
159 'model/ipv4-interface-address.cc', 154 'model/ipv4-interface-address.cc',
160 'model/ipv4-address-generator.cc', 155 'model/ipv4-address-generator.cc',
161 'model/ipv4-header.cc', 156 'model/ipv4-header.cc',
162 'model/ipv4-route.cc', 157 'model/ipv4-route.cc',
163 'model/ipv4-routing-protocol.cc', 158 'model/ipv4-routing-protocol.cc',
164 'model/udp-socket.cc', 159 'model/udp-socket.cc',
165 'model/udp-socket-factory.cc', 160 'model/udp-socket-factory.cc',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'test/ipv4-fragmentation-test.cc', 213 'test/ipv4-fragmentation-test.cc',
219 'test/ipv4-forwarding-test.cc', 214 'test/ipv4-forwarding-test.cc',
220 'test/error-channel.cc', 215 'test/error-channel.cc',
221 'test/ipv4-test.cc', 216 'test/ipv4-test.cc',
222 'test/ipv6-extension-header-test-suite.cc', 217 'test/ipv6-extension-header-test-suite.cc',
223 'test/ipv6-list-routing-test-suite.cc', 218 'test/ipv6-list-routing-test-suite.cc',
224 'test/ipv6-packet-info-tag-test-suite.cc', 219 'test/ipv6-packet-info-tag-test-suite.cc',
225 'test/ipv6-test.cc', 220 'test/ipv6-test.cc',
226 'test/ipv6-raw-test.cc', 221 'test/ipv6-raw-test.cc',
227 'test/tcp-test.cc', 222 'test/tcp-test.cc',
223 'test/tcp-header-test.cc',
224 'test/tcp-wscaling-test.cc',
228 'test/tcp-timestamp-test.cc', 225 'test/tcp-timestamp-test.cc',
229 'test/tcp-wscaling-test.cc',
230 'test/tcp-option-test.cc', 226 'test/tcp-option-test.cc',
231 'test/udp-test.cc', 227 'test/udp-test.cc',
232 'test/ipv6-address-generator-test-suite.cc', 228 'test/ipv6-address-generator-test-suite.cc',
233 'test/ipv6-dual-stack-test-suite.cc', 229 'test/ipv6-dual-stack-test-suite.cc',
234 'test/ipv6-fragmentation-test.cc', 230 'test/ipv6-fragmentation-test.cc',
235 'test/ipv6-forwarding-test.cc', 231 'test/ipv6-forwarding-test.cc',
236 'test/ipv6-ripng-test.cc', 232 'test/ipv6-ripng-test.cc',
237 'test/ipv6-address-helper-test-suite.cc', 233 'test/ipv6-address-helper-test-suite.cc',
238 'test/rtt-test.cc', 234 'test/rtt-test.cc',
239 ] 235 ]
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 obj.source.append ('model/nsc-sysctl.cc') 330 obj.source.append ('model/nsc-sysctl.cc')
335 headers.source.append('model/nsc-tcp-l4-protocol.h') 331 headers.source.append('model/nsc-tcp-l4-protocol.h')
336 obj.use.append('DL') 332 obj.use.append('DL')
337 internet_test.use.append('DL') 333 internet_test.use.append('DL')
338 334
339 if (bld.env['ENABLE_EXAMPLES']): 335 if (bld.env['ENABLE_EXAMPLES']):
340 bld.recurse('examples') 336 bld.recurse('examples')
341 337
342 bld.ns3_python_bindings() 338 bld.ns3_python_bindings()
343 339
LEFTRIGHT

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