Added 11s description to ELEASE_NOTES, fixed dependencies in building

This commit is contained in:
Kirill Andreev
2009-09-10 15:07:34 +04:00
parent 5cccb40d46
commit b90238c308
3 changed files with 8 additions and 4 deletions

View File

@@ -49,8 +49,12 @@ New user-visible features
c) added AthstatsHelper, which enables the wifi device to produce
periodic reports similar to the ones generated by madwifi's
athstats tool (Nicola Baldo)
d) Mesh netorking model:
- General multi-interface mesh stack infractructure (devices/mesh module);
- IEEE 802.11s (Draft 3.0) model including Peering Management Protocol and HWMP;
- FLAME - Forwarding layer for meshing.
API changes from ns-3.5
-----------------------
API changes for this release are documented in the file CHANGES.html.

View File

@@ -1,7 +1,7 @@
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
obj = bld.create_ns3_module('dot11s', ['wifi'])
obj = bld.create_ns3_module('dot11s', ['wifi', 'mesh'])
obj.source = [
'ie-dot11s-beacon-timing.cc',
'ie-dot11s-configuration.cc',

View File

@@ -1,7 +1,7 @@
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
obj = bld.create_ns3_module('mesh', ['wifi', 'dot11s'])
obj = bld.create_ns3_module('mesh', ['wifi'])
obj.source = [
'wifi-information-element-vector.cc',