View | Details | Raw Unified | Return to bug 2893
Collapse All | Expand All

(-)i/src/lte/helper/emu-epc-helper.cc (-1 / +1 lines)
 Lines 340-346   EmuEpcHelper::ActivateEpsBearer (Ptr<NetDevice> ueDevice, uint64_t imsi, Ptr<Epc Link Here 
340
340
341
341
342
Ptr<Node>
342
Ptr<Node>
343
EmuEpcHelper::GetPgwNode ()
343
EmuEpcHelper::GetPgwNode () const
344
{
344
{
345
  return m_sgwPgw;
345
  return m_sgwPgw;
346
}
346
}
(-)i/src/lte/helper/emu-epc-helper.h (-1 / +1 lines)
 Lines 78-84   public: Link Here 
78
  virtual void AddUe (Ptr<NetDevice> ueLteDevice, uint64_t imsi);
78
  virtual void AddUe (Ptr<NetDevice> ueLteDevice, uint64_t imsi);
79
  virtual void AddX2Interface (Ptr<Node> enbNode1, Ptr<Node> enbNode2);
79
  virtual void AddX2Interface (Ptr<Node> enbNode1, Ptr<Node> enbNode2);
80
  virtual uint8_t ActivateEpsBearer (Ptr<NetDevice> ueLteDevice, uint64_t imsi, Ptr<EpcTft> tft, EpsBearer bearer);
80
  virtual uint8_t ActivateEpsBearer (Ptr<NetDevice> ueLteDevice, uint64_t imsi, Ptr<EpcTft> tft, EpsBearer bearer);
81
  virtual Ptr<Node> GetPgwNode ();
81
  virtual Ptr<Node> GetPgwNode () const;
82
  virtual Ipv4InterfaceContainer AssignUeIpv4Address (NetDeviceContainer ueDevices);
82
  virtual Ipv4InterfaceContainer AssignUeIpv4Address (NetDeviceContainer ueDevices);
83
  virtual Ipv4Address GetUeDefaultGatewayAddress ();
83
  virtual Ipv4Address GetUeDefaultGatewayAddress ();
84
84
(-)i/src/lte/helper/epc-helper.h (-1 / +1 lines)
 Lines 119-125   public: Link Here 
119
   * intended for this method is to allow the user to configure the Gi
119
   * intended for this method is to allow the user to configure the Gi
120
   * interface of the PGW, i.e., to connect the PGW to the internet.
120
   * interface of the PGW, i.e., to connect the PGW to the internet.
121
   */
121
   */
122
  virtual Ptr<Node> GetPgwNode () = 0;
122
  virtual Ptr<Node> GetPgwNode () const = 0;
123
123
124
  /** 
124
  /** 
125
   * Assign IPv4 addresses to UE devices
125
   * Assign IPv4 addresses to UE devices
(-)i/src/lte/helper/point-to-point-epc-helper.cc (-1 / +1 lines)
 Lines 321-327   PointToPointEpcHelper::ActivateEpsBearer (Ptr<NetDevice> ueDevice, uint64_t imsi Link Here 
321
321
322
322
323
Ptr<Node>
323
Ptr<Node>
324
PointToPointEpcHelper::GetPgwNode ()
324
PointToPointEpcHelper::GetPgwNode () const
325
{
325
{
326
  return m_sgwPgw;
326
  return m_sgwPgw;
327
}
327
}
(-)i/src/lte/helper/point-to-point-epc-helper.h (-1 / +1 lines)
 Lines 75-81   public: Link Here 
75
  virtual void AddUe (Ptr<NetDevice> ueLteDevice, uint64_t imsi);
75
  virtual void AddUe (Ptr<NetDevice> ueLteDevice, uint64_t imsi);
76
  virtual void AddX2Interface (Ptr<Node> enbNode1, Ptr<Node> enbNode2);
76
  virtual void AddX2Interface (Ptr<Node> enbNode1, Ptr<Node> enbNode2);
77
  virtual uint8_t ActivateEpsBearer (Ptr<NetDevice> ueLteDevice, uint64_t imsi, Ptr<EpcTft> tft, EpsBearer bearer);
77
  virtual uint8_t ActivateEpsBearer (Ptr<NetDevice> ueLteDevice, uint64_t imsi, Ptr<EpcTft> tft, EpsBearer bearer);
78
  virtual Ptr<Node> GetPgwNode ();
78
  virtual Ptr<Node> GetPgwNode () const;
79
  virtual Ipv4InterfaceContainer AssignUeIpv4Address (NetDeviceContainer ueDevices);
79
  virtual Ipv4InterfaceContainer AssignUeIpv4Address (NetDeviceContainer ueDevices);
80
  virtual Ipv4Address GetUeDefaultGatewayAddress ();
80
  virtual Ipv4Address GetUeDefaultGatewayAddress ();
81
81

Return to bug 2893