--- a/src/devices/mesh/mesh-wifi-interface-mac.h Wed Apr 29 16:56:28 2009 +0400
+++ b/src/devices/mesh/mesh-wifi-interface-mac.h Wed Apr 29 18:31:47 2009 +0400
@@ -92,6 +92,11 @@
virtual void SetSsid (Ssid ssid);
//\}
+ ///\name Each mesh point interfaces must know the mesh point address
+ //\{
+ void SetMeshPointAddress (Mac48Address);
+ Mac48Address GetMeshPointAddress () const;
+ //\}
///\name Beacons
//\{
/// Set maximum initial random delay before first beacon
@@ -211,6 +216,8 @@
Ptr<MacLow> m_low;
/// My address
Mac48Address m_address;
+ /// Mesh point address
+ Mac48Address m_mpAddress;
/// SSID
Ssid m_meshId;