src/devices/wifi/ssid.h
changeset 1937 996383a87ae3
parent 1888 dbeef4fcff5a
child 1938 f7e9802ea8e3
--- a/src/devices/wifi/ssid.h	Tue Oct 09 16:40:24 2007 +0200
+++ b/src/devices/wifi/ssid.h	Tue Oct 09 16:47:34 2007 +0200
@@ -27,8 +27,9 @@
 
 class Ssid {
 public:
+  // broadcast ssid
+  Ssid ();
   /* 0-terminated string */
-  Ssid ();
   Ssid (char const *ssid);
   Ssid (char const ssid[32], uint8_t length);
 
@@ -36,15 +37,12 @@
   bool IsBroadcast (void) const;
 
   uint32_t GetLength (void) const;
-  void Peek (uint8_t[32]) const;
-  void Set (uint8_t[32], uint32_t len);
-
-  static Ssid GetBroadcast (void);
+ 
 private:
   char m_ssid[33];
   uint8_t m_length;
 };
 
-}; // namespace ns3
+} // namespace ns3
 
 #endif /* SSID_H */