A Discrete-Event Network Simulator
API
mac-low-transmission-parameters.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2005, 2006 INRIA
4  * Copyright (c) 2009 MIRKO BANCHI
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
20  * Mirko Banchi <mk.banchi@gmail.com>
21  */
22 
23 #ifndef MAC_LOW_TRANSMISSION_PARAMETERS_H
24 #define MAC_LOW_TRANSMISSION_PARAMETERS_H
25 
26 #include "ns3/uinteger.h"
27 #include "block-ack-type.h"
28 
29 namespace ns3 {
30 
40 {
41 public:
43 
49  void EnableAck (void);
55  void EnableBlockAck (BlockAckType type);
68  void EnableRts (void);
78  void EnableNextData (uint32_t size);
83  void DisableAck (void);
87  void DisableBlockAckRequest (void);
91  void DisableRts (void);
95  void DisableNextData (void);
102  bool MustWaitNormalAck (void) const;
108  bool MustWaitBlockAck (void) const;
114  BlockAckType GetBlockAckType (void) const;
120  bool MustSendBlockAckRequest (void) const;
131  bool MustSendRts (void) const;
135  bool HasNextPacket (void) const;
139  uint32_t GetNextPacketSize (void) const;
140 
141 private:
142  friend std::ostream &operator << (std::ostream &os, const MacLowTransmissionParameters &params);
143  uint32_t m_nextSize;
144  enum
146  {
153  } m_waitAck;
154  enum
156  {
162  } m_sendBar;
163  bool m_sendRts;
164 };
165 
173 std::ostream &operator << (std::ostream &os, const MacLowTransmissionParameters &params);
174 
175 } //namespace ns3
176 
177 #endif /* MAC_LOW_TRANSMISSION_PARAMETERS_H */
friend std::ostream & operator<<(std::ostream &os, const MacLowTransmissionParameters &params)
Serialize MacLowTransmissionParameters to ostream in a human-readable form.
control how a packet is transmitted.
std::ostream & operator<<(std::ostream &os, const Angles &a)
print a struct Angles to output
Definition: angles.cc:42
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void EnableAck(void)
Wait ACKTimeout for an Ack.
void DisableRts(void)
Do not send RTS and wait for CTS before sending data.
enum ns3::MacLowTransmissionParameters::@73 m_waitAck
wait Ack enumerated type
enum ns3::MacLowTransmissionParameters::@74 m_sendBar
send BAR enumerated type
void EnableRts(void)
Send a RTS, and wait CTSTimeout for a CTS.
void DisableNextData(void)
Do not attempt to send data burst after current transmission.
void DisableBlockAckRequest(void)
Do not send BlockAckRequest after data transmission.
void EnableBlockAck(BlockAckType type)
Wait the timeout corresponding to the given BlockAck response type.
void EnableBlockAckRequest(BlockAckType type)
Schedule the transmission of a BlockAckRequest of the given type.
void DisableAck(void)
Do not wait for Ack after data transmission.
BlockAckType
The different block ack policies.