A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
originator-block-ack-agreement.h
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2009, 2010 MIRKO BANCHI
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Mirko Banchi <mk.banchi@gmail.com>
19  * Author: Tommaso Pecorella <tommaso.pecorella@unifi.it>
20  */
21 #ifndef ORIGINATOR_BLOCK_ACK_AGREEMENT_H
22 #define ORIGINATOR_BLOCK_ACK_AGREEMENT_H
23 
24 #include "block-ack-agreement.h"
25 
26 namespace ns3 {
27 
34 {
35  friend class BlockAckManager;
36 public:
38  OriginatorBlockAckAgreement (Mac48Address recipient, uint8_t tid);
40  /* receive ADDBAResponse
41  * send ADDBARequest --------------- status code = success ---------------
42  * ----------------->| PENDING |------------------------>| ESTABLISHED |-----
43  * --------------- --------------- |
44  * | / ^ ^ |
45  * receive ADDBAResponse | receive BlockAck / | | | receive BlockAck
46  * status code = failure | retryPkts + queuePkts / | | | retryPkts + queuePkts
47  * v < / | | | >=
48  * --------------- blockAckThreshold / | | | blockAckThreshold
49  * | UNSUCCESSFUL | / | | |
50  * --------------- v | ----------|
51  * -------------- |
52  * | INACTIVE | |
53  * -------------- |
54  * send a MPDU (Normal Ack) | |
55  * retryPkts + queuePkts | |
56  * >= | |
57  * blockAckThreshold |----------------
58  */
89  enum State
90  {
91  PENDING,
92  ESTABLISHED,
93  INACTIVE,
94  UNSUCCESSFUL
95  };
96  void SetState (enum State state);
97  bool IsPending (void) const;
98  bool IsEstablished (void) const;
99  bool IsInactive (void) const;
100  bool IsUnsuccessful (void) const;
104  void NotifyMpduTransmission (uint16_t nextSeqNumber);
109  bool IsBlockAckRequestNeeded (void) const;
110  void CompleteExchange (void);
111 
112 private:
113  enum State m_state;
114  uint16_t m_sentMpdus;
115  bool m_needBlockAckReq;
116 };
117 
118 } // namespace ns3
119 
120 #endif /* ORIGINATOR_BLOCK_ACK_AGREEMENT_H */
an EUI-48 address
Definition: mac48-address.h:41
Maintains information for a block ack agreement.
void NotifyMpduTransmission(uint16_t nextSeqNumber)
Manages all block ack agreements for an originator station.