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

(-)a/src/mesh/model/dot11s/hwmp-protocol.h (-2 / +4 lines)
 Lines 73-83    Link Here 
73
  /**
73
  /**
74
   * \brief structure of unreachable destination - address and sequence number
74
   * \brief structure of unreachable destination - address and sequence number
75
   */
75
   */
76
  typedef struct
76
  struct FailedDestination
77
  {
77
  {
78
    Mac48Address destination; ///< destination address
78
    Mac48Address destination; ///< destination address
79
    uint32_t seqnum; ///< sequence number
79
    uint32_t seqnum; ///< sequence number
80
  } FailedDestination;
80
  };
81
82
  typedef struct FailedDestination FailedDestination;
81
  /// Route request, inherited from MeshL2RoutingProtocol
83
  /// Route request, inherited from MeshL2RoutingProtocol
82
  bool RequestRoute (uint32_t  sourceIface, const Mac48Address source, const Mac48Address destination,
84
  bool RequestRoute (uint32_t  sourceIface, const Mac48Address source, const Mac48Address destination,
83
                     Ptr<const Packet>  packet, uint16_t  protocolType, RouteReplyCallback  routeReply);
85
                     Ptr<const Packet>  packet, uint16_t  protocolType, RouteReplyCallback  routeReply);
(-)a/src/wifi/model/mac-low.h (-2 / +3 lines)
 Lines 1094-1106    Link Here 
1094
  /**
1094
  /**
1095
   * A struct for packet, Wifi header, and timestamp.
1095
   * A struct for packet, Wifi header, and timestamp.
1096
   */
1096
   */
1097
  typedef struct
1097
  struct Item
1098
  {
1098
  {
1099
    Ptr<const Packet> packet; //!< the packet
1099
    Ptr<const Packet> packet; //!< the packet
1100
    WifiMacHeader hdr; //!< the header
1100
    WifiMacHeader hdr; //!< the header
1101
    Time timestamp; //!< the timestamp
1101
    Time timestamp; //!< the timestamp
1102
  } Item; //!< item structure
1102
  }; //!< item structure
1103
1103
1104
  typedef struct Item Item;
1104
  /**
1105
  /**
1105
   * typedef for an iterator for a list of DcfManager.
1106
   * typedef for an iterator for a list of DcfManager.
1106
   */
1107
   */

Return to bug 2451