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

Side by Side Diff: src/node/wscript

Issue 65047: ns-3 ipv4 changes
Patch Set: Created 14 years, 10 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 2
3 def build(bld): 3 def build(bld):
4 node = bld.create_ns3_module('node', ['core', 'common', 'simulator']) 4 node = bld.create_ns3_module('node', ['core', 'common', 'simulator'])
5 node.source = [ 5 node.source = [
6 'address.cc', 6 'address.cc',
7 'mac48-address.cc', 7 'mac48-address.cc',
8 'mac64-address.cc', 8 'mac64-address.cc',
9 'inet-socket-address.cc', 9 'inet-socket-address.cc',
10 'packet-socket-address.cc', 10 'packet-socket-address.cc',
11 'node.cc', 11 'node.cc',
12 'ipv4-address.cc', 12 'ipv4-address.cc',
13 'ipv4-interface-address.cc', 13 'ipv4-interface-address.cc',
14 'ipv4-address-generator.cc', 14 'ipv4-address-generator.cc',
15 'ipv4-header.cc', 15 'ipv4-header.cc',
16 'net-device.cc', 16 'net-device.cc',
17 'address-utils.cc', 17 'address-utils.cc',
18 'llc-snap-header.cc', 18 'llc-snap-header.cc',
19 'ethernet-header.cc', 19 'ethernet-header.cc',
20 'ethernet-trailer.cc', 20 'ethernet-trailer.cc',
21 'ipv4-route.cc', 21 'ipv4-route.cc',
22 'ipv4-routing-protocol.cc',
23 'ipv4-list-routing.cc',
24 'ipv4-static-routing.cc',
25 'ipv4-routing-table-entry.cc',
22 'queue.cc', 26 'queue.cc',
23 'drop-tail-queue.cc', 27 'drop-tail-queue.cc',
24 'channel.cc', 28 'channel.cc',
25 'node-list.cc', 29 'node-list.cc',
26 'socket.cc', 30 'socket.cc',
27 'socket-factory.cc', 31 'socket-factory.cc',
28 'packet-socket-factory.cc', 32 'packet-socket-factory.cc',
29 'packet-socket.cc', 33 'packet-socket.cc',
30 'udp-socket.cc', 34 'udp-socket.cc',
31 'udp-socket-factory.cc', 35 'udp-socket-factory.cc',
(...skipping 13 matching lines...) Expand all
45 headers.module = 'node' 49 headers.module = 'node'
46 headers.source = [ 50 headers.source = [
47 'address.h', 51 'address.h',
48 'mac48-address.h', 52 'mac48-address.h',
49 'mac64-address.h', 53 'mac64-address.h',
50 'inet-socket-address.h', 54 'inet-socket-address.h',
51 'ipv4-interface-address.h', 55 'ipv4-interface-address.h',
52 'packet-socket-address.h', 56 'packet-socket-address.h',
53 'node.h', 57 'node.h',
54 'ipv4-address.h', 58 'ipv4-address.h',
59 'ipv4-interface-address.h',
55 'ipv4-address-generator.h', 60 'ipv4-address-generator.h',
56 'ipv4-header.h', 61 'ipv4-header.h',
57 'net-device.h', 62 'net-device.h',
58 'address-utils.h', 63 'address-utils.h',
59 'ipv4-route.h', 64 'ipv4-route.h',
65 'ipv4-routing-protocol.h',
66 'ipv4-list-routing.h',
67 'ipv4-static-routing.h',
68 'ipv4-routing-table-entry.h',
60 'queue.h', 69 'queue.h',
61 'drop-tail-queue.h', 70 'drop-tail-queue.h',
62 'llc-snap-header.h', 71 'llc-snap-header.h',
63 'ethernet-header.h', 72 'ethernet-header.h',
64 'ethernet-trailer.h', 73 'ethernet-trailer.h',
65 'channel.h', 74 'channel.h',
66 'node-list.h', 75 'node-list.h',
67 'socket.h', 76 'socket.h',
68 'socket-factory.h', 77 'socket-factory.h',
69 'packet-socket-factory.h', 78 'packet-socket-factory.h',
70 'udp-socket.h', 79 'udp-socket.h',
71 'udp-socket-factory.h', 80 'udp-socket-factory.h',
72 'tcp-socket.h', 81 'tcp-socket.h',
73 'tcp-socket-factory.h', 82 'tcp-socket-factory.h',
74 'ipv4.h', 83 'ipv4.h',
75 'application.h', 84 'application.h',
76 'simple-channel.h', 85 'simple-channel.h',
77 'simple-net-device.h', 86 'simple-net-device.h',
78 'inet6-socket-address.h', 87 'inet6-socket-address.h',
79 'ipv6-address.h', 88 'ipv6-address.h',
80 'ipv6-header.h', 89 'ipv6-header.h',
81 'ipv4-raw-socket-factory.h', 90 'ipv4-raw-socket-factory.h',
82 ] 91 ]
OLDNEW

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