Implementation of the UDP protocol. More...
#include <udp-l4-protocol.h>
Public Member Functions | |
void | SetNode (Ptr< Node > node) |
virtual int | GetProtocolNumber (void) const |
Ptr< Socket > | CreateSocket (void) |
Ipv4EndPoint * | Allocate (void) |
Ipv4EndPoint * | Allocate (Ipv4Address address) |
Ipv4EndPoint * | Allocate (uint16_t port) |
Ipv4EndPoint * | Allocate (Ipv4Address address, uint16_t port) |
Ipv4EndPoint * | Allocate (Ipv4Address localAddress, uint16_t localPort, Ipv4Address peerAddress, uint16_t peerPort) |
void | DeAllocate (Ipv4EndPoint *endPoint) |
void | Send (Ptr< Packet > packet, Ipv4Address saddr, Ipv4Address daddr, uint16_t sport, uint16_t dport) |
Send a packet via UDP. | |
void | Send (Ptr< Packet > packet, Ipv4Address saddr, Ipv4Address daddr, uint16_t sport, uint16_t dport, Ptr< Ipv4Route > route) |
virtual enum Ipv4L4Protocol::RxStatus | Receive (Ptr< Packet > p, Ipv4Address const &source, Ipv4Address const &destination, Ptr< Ipv4Interface > interface) |
Receive a packet up the protocol stack. | |
virtual void | ReceiveIcmp (Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo, Ipv4Address payloadSource, Ipv4Address payloadDestination, const uint8_t payload[8]) |
Receive an ICMP packet. | |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
This method returns the TypeId associated to ns3::UdpL4Protocol. | |
Static Public Attributes | |
static const uint8_t | PROT_NUMBER |
Protected Member Functions | |
virtual void | DoDispose (void) |
virtual void | NotifyNewAggregate () |
Implementation of the UDP protocol.
virtual void ns3::UdpL4Protocol::DoDispose | ( | void | ) | [protected, virtual] |
This method is called by Object::Dispose or by the object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overriden version of this method and chain up to their parent's implementation once they are done. i.e., for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose method.
It is safe to call GetObject from within this method.
Reimplemented from ns3::Object.
virtual int ns3::UdpL4Protocol::GetProtocolNumber | ( | void | ) | const [virtual] |
Implements ns3::Ipv4L4Protocol.
static TypeId ns3::UdpL4Protocol::GetTypeId | ( | void | ) | [static] |
This method returns the TypeId associated to ns3::UdpL4Protocol.
This object is accessible through the following paths with Config::Set and Config::Connect:
No Attributes defined for this type.
Attributes defined in parent class ns3::Ipv4L4Protocol:
No TraceSources defined for this type.
Reimplemented from ns3::Ipv4L4Protocol.
virtual void ns3::UdpL4Protocol::NotifyNewAggregate | ( | ) | [protected, virtual] |
This method is invoked whenever two sets of objects are aggregated together. It is invoked exactly once for each object in both sets. This method can be overriden by subclasses who wish to be notified of aggregation events. These subclasses must chain up to their base class NotifyNewAggregate method. It is safe to call GetObject and AggregateObject from within this method.
Reimplemented from ns3::Object.
virtual enum Ipv4L4Protocol::RxStatus ns3::UdpL4Protocol::Receive | ( | Ptr< Packet > | p, | |
Ipv4Address const & | source, | |||
Ipv4Address const & | destination, | |||
Ptr< Ipv4Interface > | interface | |||
) | [virtual] |
Receive a packet up the protocol stack.
p | The Packet to dump the contents into | |
source | The source's Ipv4Address | |
destination | The destinations Ipv4Address | |
interface | the interface from which the packet is coming. |
Implements ns3::Ipv4L4Protocol.
virtual void ns3::UdpL4Protocol::ReceiveIcmp | ( | Ipv4Address | icmpSource, | |
uint8_t | icmpTtl, | |||
uint8_t | icmpType, | |||
uint8_t | icmpCode, | |||
uint32_t | icmpInfo, | |||
Ipv4Address | payloadSource, | |||
Ipv4Address | payloadDestination, | |||
const uint8_t | payload[8] | |||
) | [virtual] |
Receive an ICMP packet.
icmpSource | The IP address of the source of the packet. | |
icmpTtl | The time to live from the IP header | |
icmpType | The type of the message from the ICMP header | |
icmpCode | The message code from the ICMP header | |
icmpInfo | 32-bit integer carrying informational value of varying semantics. | |
payloadSource | The IP source address from the IP header of the packet | |
payloadDestination | The IP destination address from the IP header of the packet | |
payload | Payload of the ICMP packet |
Reimplemented from ns3::Ipv4L4Protocol.
void ns3::UdpL4Protocol::Send | ( | Ptr< Packet > | packet, | |
Ipv4Address | saddr, | |||
Ipv4Address | daddr, | |||
uint16_t | sport, | |||
uint16_t | dport | |||
) |
Send a packet via UDP.
packet | The packet to send | |
saddr | The source Ipv4Address | |
daddr | The destination Ipv4Address | |
sport | The source port number | |
dport | The destination port number |