A Discrete-Event Network Simulator
API
yans-wifi-channel.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2006,2007 INRIA
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: Mathieu Lacage, <mathieu.lacage@sophia.inria.fr>
19  */
20 
21 #ifndef YANS_WIFI_CHANNEL_H
22 #define YANS_WIFI_CHANNEL_H
23 
24 #include "ns3/channel.h"
25 
26 namespace ns3 {
27 
28 class NetDevice;
29 class PropagationLossModel;
30 class PropagationDelayModel;
31 class YansWifiPhy;
32 class Packet;
33 class Time;
34 
44 class YansWifiChannel : public Channel
45 {
46 public:
51  static TypeId GetTypeId (void);
52 
53  YansWifiChannel ();
54  virtual ~YansWifiChannel ();
55 
56  //inherited from Channel.
57  virtual std::size_t GetNDevices (void) const;
58  virtual Ptr<NetDevice> GetDevice (std::size_t i) const;
59 
65  void Add (Ptr<YansWifiPhy> phy);
66 
75 
87  void Send (Ptr<YansWifiPhy> sender, Ptr<const Packet> packet, double txPowerDbm, Time duration) const;
88 
98  int64_t AssignStreams (int64_t stream);
99 
100 
101 private:
105  typedef std::vector<Ptr<YansWifiPhy> > PhyList;
106 
117  static void Receive (Ptr<YansWifiPhy> receiver, Ptr<Packet> packet, double txPowerDbm, Time duration);
118 
122 };
123 
124 } //namespace ns3
125 
126 #endif /* YANS_WIFI_CHANNEL_H */
Ptr< PropagationDelayModel > m_delay
Propagation delay model.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:102
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
void SetPropagationLossModel(const Ptr< PropagationLossModel > loss)
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
Abstract Channel Base Class.
Definition: channel.h:43
virtual Ptr< NetDevice > GetDevice(std::size_t i) const
void(* Time)(Time oldValue, Time newValue)
TracedValue callback signature for Time.
Definition: nstime.h:743
phy
Definition: third.py:86
void SetPropagationDelayModel(const Ptr< PropagationDelayModel > delay)
Ptr< PropagationLossModel > m_loss
Propagation loss model.
static void Receive(Ptr< YansWifiPhy > receiver, Ptr< Packet > packet, double txPowerDbm, Time duration)
This method is scheduled by Send for each associated YansWifiPhy.
PhyList m_phyList
List of YansWifiPhys connected to this YansWifiChannel.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static TypeId GetTypeId(void)
Get the type ID.
std::vector< Ptr< YansWifiPhy > > PhyList
A vector of pointers to YansWifiPhy.
virtual std::size_t GetNDevices(void) const
void Add(Ptr< YansWifiPhy > phy)
Adds the given YansWifiPhy to the PHY list.
a channel to interconnect ns3::YansWifiPhy objects.
void Send(Ptr< YansWifiPhy > sender, Ptr< const Packet > packet, double txPowerDbm, Time duration) const
a unique identifier for an interface.
Definition: type-id.h:58