From b90238c3083c962db36ccadd57efee52b07c03e4 Mon Sep 17 00:00:00 2001 From: Kirill Andreev Date: Thu, 10 Sep 2009 15:07:34 +0400 Subject: [PATCH] Added 11s description to ELEASE_NOTES, fixed dependencies in building --- RELEASE_NOTES | 8 ++++++-- src/devices/mesh/dot11s/wscript | 2 +- src/devices/mesh/wscript | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 4175cd258..beaf6163c 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -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. diff --git a/src/devices/mesh/dot11s/wscript b/src/devices/mesh/dot11s/wscript index 177da508e..62cd0391f 100644 --- a/src/devices/mesh/dot11s/wscript +++ b/src/devices/mesh/dot11s/wscript @@ -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', diff --git a/src/devices/mesh/wscript b/src/devices/mesh/wscript index 0a3911bec..d11c8cb1d 100644 --- a/src/devices/mesh/wscript +++ b/src/devices/mesh/wscript @@ -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',