20 #include "ns3/address.h"
21 #include "ns3/address-utils.h"
23 #include "ns3/inet-socket-address.h"
24 #include "ns3/inet6-socket-address.h"
26 #include "ns3/socket.h"
27 #include "ns3/udp-socket.h"
28 #include "ns3/simulator.h"
29 #include "ns3/socket-factory.h"
30 #include "ns3/packet.h"
31 #include "ns3/trace-source-accessor.h"
32 #include "ns3/udp-socket-factory.h"
47 .AddConstructor<PacketSink> ()
48 .AddAttribute (
"Local",
"The Address on which to Bind the rx socket.",
51 MakeAddressChecker ())
52 .AddAttribute (
"Protocol",
"The type id of the protocol to use for the rx socket.",
56 .AddTraceSource (
"Rx",
"A packet has been received",
87 std::list<Ptr<Socket> >
122 udpSocket->MulticastJoinGroup (0,
m_local);
147 acceptedSocket->
Close ();
161 while ((packet = socket->
RecvFrom (from)))
171 <<
"s packet sink received "
172 << packet->
GetSize () <<
" bytes from "
175 <<
" total Rx " <<
m_totalRx <<
" bytes");
180 <<
"s packet sink received "
181 << packet->
GetSize () <<
" bytes from "
184 <<
" total Rx " <<
m_totalRx <<
" bytes");
static TypeId GetTypeId(void)
Get the type ID.
Ipv6Address GetIpv6(void) const
Get the IPv6 address.
Ipv4Address GetIpv4(void) const
#define NS_LOG_FUNCTION(parameters)
Address m_local
Local address to bind to.
NS_LOG_COMPONENT_DEFINE("GrantedTimeWindowMpiInterface")
uint32_t m_totalRx
Total bytes received.
virtual int ShutdownSend(void)=0
bool IsMulticast(const Address &ad)
Address family-independent test for a multicast address.
NS_OBJECT_ENSURE_REGISTERED(NullMessageSimulatorImpl)
TracedCallback< Ptr< const Packet >, const Address & > m_rxTrace
Traced Callback: received packets, source address.
uint32_t GetSize(void) const
void SetCloseCallbacks(Callback< void, Ptr< Socket > > normalClose, Callback< void, Ptr< Socket > > errorClose)
Detect socket recv() events such as graceful shutdown or error.
static TypeId GetTypeId(void)
Get the type ID.
Callback< R > MakeNullCallback(void)
#define NS_FATAL_ERROR(msg)
fatal error handling
a polymophic address class
virtual int Listen(void)=0
Listen for incoming connections.
The base class for all ns3 applications.
Ptr< Node > GetNode() const
void HandleRead(Ptr< Socket > socket)
Handle a packet received by the application.
hold objects of type ns3::TypeId
TypeId m_tid
Protocol TypeId.
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
virtual void StopApplication(void)
Application specific shutdown code.
void SetRecvCallback(Callback< void, Ptr< Socket > >)
Notify application when new data is available to be read.
static Ptr< Socket > CreateSocket(Ptr< Node > node, TypeId tid)
This method wraps the creation of sockets that is performed on a given node by a SocketFactory specif...
void HandlePeerClose(Ptr< Socket > socket)
Handle an connection close.
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket.
static InetSocketAddress ConvertFrom(const Address &address)
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
static Time Now(void)
Return the "current simulation time".
uint32_t GetTotalRx() const
void SetAcceptCallback(Callback< bool, Ptr< Socket >, const Address & > connectionRequest, Callback< void, Ptr< Socket >, const Address & > newConnectionCreated)
Accept connection requests from remote hosts.
std::list< Ptr< Socket > > GetAcceptedSockets(void) const
std::list< Ptr< Socket > > m_socketList
the accepted sockets
hold objects of type ns3::Address
void HandleAccept(Ptr< Socket > socket, const Address &from)
Handle an incoming connection.
void HandlePeerError(Ptr< Socket > socket)
Handle an connection error.
static Inet6SocketAddress ConvertFrom(const Address &addr)
Convert the address to a InetSocketAddress.
static bool IsMatchingType(const Address &addr)
If the address match.
uint16_t GetPort(void) const
Get the port.
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
uint16_t GetPort(void) const
virtual void StartApplication(void)
Application specific startup code.
virtual Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress)=0
Read a single packet from the socket and retrieve the sender address.
Ptr< Socket > m_socket
Listening socket.
virtual int Close(void)=0
Close a socket.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
static bool IsMatchingType(const Address &address)
Ptr< Socket > GetListeningSocket(void) const