A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
lte-net-device.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2010 TELEMATICS LAB, DEE - Politecnico di Bari
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: Giuseppe Piro <g.piro@poliba.it>
19  * Nicola Baldo <nbaldo@cttc.es>
20  */
21 
22 #ifndef LTE_NET_DEVICE_H
23 #define LTE_NET_DEVICE_H
24 
25 #include <ns3/net-device.h>
26 #include <ns3/event-id.h>
27 #include <ns3/mac48-address.h>
28 #include <ns3/traced-callback.h>
29 #include <ns3/nstime.h>
30 #include <ns3/lte-phy.h>
31 #include <ns3/lte-control-messages.h>
32 
33 namespace ns3 {
34 
35 class Node;
36 class Packet;
37 
48 class LteNetDevice : public NetDevice
49 {
50 public:
51  static TypeId GetTypeId (void);
52 
53  LteNetDevice (void);
54  virtual ~LteNetDevice (void);
55 
56  virtual void DoDispose (void);
57 
58  // inherited from NetDevice
59  virtual void SetIfIndex (const uint32_t index);
60  virtual uint32_t GetIfIndex (void) const;
61  virtual Ptr<Channel> GetChannel (void) const;
62  virtual bool SetMtu (const uint16_t mtu);
63  virtual uint16_t GetMtu (void) const;
64  virtual void SetAddress (Address address);
65  virtual Address GetAddress (void) const;
66  virtual bool IsLinkUp (void) const;
67  virtual void AddLinkChangeCallback (Callback<void> callback);
68  virtual bool IsBroadcast (void) const;
69  virtual Address GetBroadcast (void) const;
70  virtual bool IsMulticast (void) const;
71  virtual bool IsPointToPoint (void) const;
72  virtual bool IsBridge (void) const;
73  virtual Ptr<Node> GetNode (void) const;
74  virtual void SetNode (Ptr<Node> node);
75  virtual bool NeedsArp (void) const;
77  virtual Address GetMulticast (Ipv4Address addr) const;
78  virtual Address GetMulticast (Ipv6Address addr) const;
80  virtual bool SendFrom (Ptr<Packet> packet, const Address& source, const Address& dest, uint16_t protocolNumber);
81  virtual bool SupportsSendFrom (void) const;
82 
88  void Receive (Ptr<Packet> p);
89 
90 protected:
91 
93 
94 private:
95  LteNetDevice (const LteNetDevice &);
97 
99 
101 
102  uint32_t m_ifIndex;
103  bool m_linkUp;
104  mutable uint16_t m_mtu;
105 
107 };
108 
109 
110 } // namespace ns3
111 
112 #endif /* LTE_NET_DEVICE_H */