src/wifi/model/block-ack-cache.h
author Junling Bu <linlinjavaer@gmail.com>
Tue, 03 Dec 2013 11:25:59 -0800
changeset 10459 f2e90c12a44f
parent 7386 2310ed220a61
child 11174 780a43e4980c
permissions -rw-r--r--
base implementation of the IEEE 802.11p standard

/* -*- 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;

/**
 * \ingroup wifi
 *
 *
 */
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 */