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

Side by Side Diff: src/network/wscript

Issue 4664057: Netdevice queue feedback support
Patch Set: Netdevice queue support Created 12 years, 9 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 network = bld.create_ns3_module('network', ['core']) 4 network = bld.create_ns3_module('network', ['core'])
5 network.source = [ 5 network.source = [
6 'model/address.cc', 6 'model/address.cc',
7 'model/application.cc', 7 'model/application.cc',
8 'model/buffer.cc', 8 'model/buffer.cc',
9 'model/byte-tag-list.cc', 9 'model/byte-tag-list.cc',
10 'model/channel.cc', 10 'model/channel.cc',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'model/channel-list.h', 78 'model/channel-list.h',
79 'model/chunk.h', 79 'model/chunk.h',
80 'model/header.h', 80 'model/header.h',
81 'model/net-device.h', 81 'model/net-device.h',
82 'model/nix-vector.h', 82 'model/nix-vector.h',
83 'model/node.h', 83 'model/node.h',
84 'model/node-list.h', 84 'model/node-list.h',
85 'model/packet.h', 85 'model/packet.h',
86 'model/packet-metadata.h', 86 'model/packet-metadata.h',
87 'model/packet-tag-list.h', 87 'model/packet-tag-list.h',
88 'model/queue-state.h',
88 'model/socket.h', 89 'model/socket.h',
89 'model/socket-factory.h', 90 'model/socket-factory.h',
90 'model/tag.h', 91 'model/tag.h',
91 'model/tag-buffer.h', 92 'model/tag-buffer.h',
92 'model/trailer.h', 93 'model/trailer.h',
93 'utils/address-utils.h', 94 'utils/address-utils.h',
94 'utils/data-rate.h', 95 'utils/data-rate.h',
95 'utils/drop-tail-queue.h', 96 'utils/drop-tail-queue.h',
96 'utils/error-model.h', 97 'utils/error-model.h',
97 'utils/ethernet-header.h', 98 'utils/ethernet-header.h',
(...skipping 25 matching lines...) Expand all
123 'helper/net-device-container.h', 124 'helper/net-device-container.h',
124 'helper/node-container.h', 125 'helper/node-container.h',
125 'helper/packet-socket-helper.h', 126 'helper/packet-socket-helper.h',
126 'helper/trace-helper.h', 127 'helper/trace-helper.h',
127 ] 128 ]
128 129
129 if (bld.env['ENABLE_EXAMPLES']): 130 if (bld.env['ENABLE_EXAMPLES']):
130 bld.add_subdirs('examples') 131 bld.add_subdirs('examples')
131 132
132 bld.ns3_python_bindings() 133 bld.ns3_python_bindings()
OLDNEW

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