src/wifi/model/block-ack-cache.h
author Lalith Suresh <suresh.lalith@gmail.com>
Fri, 04 Mar 2011 01:26:54 +0000
changeset 6852 8f1a53d3f6ca
parent 6848 src/devices/wifi/model/block-ack-cache.h@1f453ad50ef3
child 7139 79dd02ed46ec
permissions -rw-r--r--
Moves devices/* and routing/* to src/

/* -*-  Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2010 MIRKO BANCHI
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as 
 * published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Author: Mirko Banchi <mk.banchi@gmail.com>
 */
#ifndef BLOCK_ACK_CACHE_H
#define BLOCK_ACK_CACHE_H

#include <stdint.h>

namespace ns3 {

class WifiMacHeader;
class CtrlBAckResponseHeader;

class BlockAckCache
{
public:
  void Init (uint16_t winStart, uint16_t winSize);

  void UpdateWithMpdu (const WifiMacHeader *hdr);
  void UpdateWithBlockAckReq (uint16_t startingSeq);

  void FillBlockAckBitmap (CtrlBAckResponseHeader *blockAckHeader);
private:
  void ResetPortionOfBitmap (uint16_t start, uint16_t end);
  bool IsInWindow (uint16_t seq);

  uint16_t m_winStart;
  uint8_t m_winSize;
  uint16_t m_winEnd;

  uint16_t m_bitmap[4096];
};

} //namespace ns3

#endif /* BLOCK_ACK_CACHE_H */