src/internet-node/ipv4-interface.h
changeset 1866 e7dbcc4df546
parent 1341 f685d4bf320f
child 1867 16deaedc0380
--- a/src/internet-node/ipv4-interface.h	Mon Oct 01 14:14:31 2007 +0200
+++ b/src/internet-node/ipv4-interface.h	Mon Oct 01 14:15:56 2007 +0200
@@ -137,12 +137,12 @@
    * This method will eventually call the private
    * SendTo method which must be implemented by subclasses.
    */ 
-  void Send(Packet p, Ipv4Address dest);
+  void Send(Ptr<Packet> p, Ipv4Address dest);
 
 protected:
   virtual void DoDispose (void);
 private:
-  virtual void SendTo (Packet p, Ipv4Address dest) = 0;
+  virtual void SendTo (Ptr<Packet> p, Ipv4Address dest) = 0;
   Ptr<NetDevice> m_netdevice;
   bool m_ifup;
   Ipv4Address m_address;