src/devices/wifi/wifi-information-element.h
changeset 6389 6e83ec53ba0a
parent 6382 9e5768e48981
child 6445 43d91786d268
equal deleted inserted replaced
6388:eeb9780b5580 6389:6e83ec53ba0a
   135 class WifiInformationElement : public SimpleRefCount<WifiInformationElement>
   135 class WifiInformationElement : public SimpleRefCount<WifiInformationElement>
   136 {
   136 {
   137 public:
   137 public:
   138   virtual ~WifiInformationElement ();
   138   virtual ~WifiInformationElement ();
   139   /// Serialize entire IE including Element ID and length fields
   139   /// Serialize entire IE including Element ID and length fields
   140   Buffer::Iterator SerializeIE (Buffer::Iterator i) const;
   140   Buffer::Iterator Serialize (Buffer::Iterator i) const;
   141   /// Deserialize entire IE, which must be present. The iterator
   141   /// Deserialize entire IE, which must be present. The iterator
   142   /// passed in must be pointing at the Element ID (i.e., the very
   142   /// passed in must be pointing at the Element ID (i.e., the very
   143   /// first octet) of the correct type of information element,
   143   /// first octet) of the correct type of information element,
   144   /// otherwise this method will generate a fatal error.
   144   /// otherwise this method will generate a fatal error.
   145   Buffer::Iterator Deserialize (Buffer::Iterator i);
   145   Buffer::Iterator Deserialize (Buffer::Iterator i);