src/devices/csma/csma-net-device.h
changeset 5832 2812b92d4888
parent 5227 ecb08c1fc273
child 6011 3fd7841b9c20
--- a/src/devices/csma/csma-net-device.h	Wed Dec 02 14:29:43 2009 -0800
+++ b/src/devices/csma/csma-net-device.h	Wed Dec 02 15:11:49 2009 -0800
@@ -48,11 +48,6 @@
  * The Csma net device class is analogous to layer 1 and 2 of the
  * TCP stack. The NetDevice takes a raw packet of bytes and creates a
  * protocol specific packet from them. 
- *
- * Each Csma net device will receive all packets written to the Csma link. 
- * The ProcessHeader function can be used to filter out the packets such that
- * higher level layers only receive packets that are addressed to their
- * associated net devices
  */
 class CsmaNetDevice : public NetDevice 
 {
@@ -440,18 +435,6 @@
    */
   void AddHeader (Ptr<Packet> p, Mac48Address source, Mac48Address dest, uint16_t protocolNumber);
 
-  /**
-   * Removes, from a packet of data, all headers and trailers that
-   * relate to the packet type
-   *
-   * \param p Packet whose headers need to be processed
-   * \param param An integer parameter that can be set by the function
-   * to return information gathered in the header
-   * \return Returns true if the packet should be forwarded up the
-   * protocol stack.
-   */
-  bool ProcessHeader (Ptr<Packet> p, uint16_t & param);
-
 private:
 
   /**