A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
icmpv4-l4-protocol.h
Go to the documentation of this file.
1 #ifndef ICMPV4_L4_PROTOCOL_H
2 #define ICMPV4_L4_PROTOCOL_H
3 
4 #include "ip-l4-protocol.h"
5 #include "icmpv4.h"
6 #include "ns3/ipv4-address.h"
7 
8 namespace ns3 {
9 
10 class Node;
11 class Ipv4Interface;
12 class Ipv4Route;
13 
15 {
16 public:
17  static TypeId GetTypeId (void);
18  static const uint8_t PROT_NUMBER;
19 
21  virtual ~Icmpv4L4Protocol ();
22 
23  void SetNode (Ptr<Node> node);
24 
25  static uint16_t GetStaticProtocolNumber (void);
26  virtual int GetProtocolNumber (void) const;
28  Ipv4Header const &header,
29  Ptr<Ipv4Interface> incomingInterface);
31  Ipv6Header const &header,
32  Ptr<Ipv6Interface> incomingInterface);
33 
34  void SendDestUnreachFragNeeded (Ipv4Header header, Ptr<const Packet> orgData, uint16_t nextHopMtu);
35  void SendTimeExceededTtl (Ipv4Header header, Ptr<const Packet> orgData);
36  void SendDestUnreachPort (Ipv4Header header, Ptr<const Packet> orgData);
37 
38  // From IpL4Protocol
41  // From IpL4Protocol
44 protected:
45  /*
46  * This function will notify other components connected to the node that a new stack member is now connected
47  * This will be used to notify Layer 3 protocol of layer 4 protocol stack to connect them together.
48  */
49  virtual void NotifyNewAggregate ();
50 private:
51  void HandleEcho (Ptr<Packet> p,
52  Icmpv4Header header,
53  Ipv4Address source,
54  Ipv4Address destination);
56  Icmpv4Header header,
57  Ipv4Address source,
58  Ipv4Address destination);
60  Icmpv4Header icmp,
61  Ipv4Address source,
62  Ipv4Address destination);
63  void SendDestUnreach (Ipv4Header header, Ptr<const Packet> orgData,
64  uint8_t code, uint16_t nextHopMtu);
65  void SendMessage (Ptr<Packet> packet, Ipv4Address dest, uint8_t type, uint8_t code);
66  void SendMessage (Ptr<Packet> packet, Ipv4Address source, Ipv4Address dest, uint8_t type, uint8_t code, Ptr<Ipv4Route> route);
67  void Forward (Ipv4Address source, Icmpv4Header icmp,
68  uint32_t info, Ipv4Header ipHeader,
69  const uint8_t payload[8]);
70 
71  virtual void DoDispose (void);
72 
75 };
76 
77 } // namespace ns3
78 
79 #endif /* ICMPV4_L4_PROTOCOL_H */