A Discrete-Event Network Simulator
API
ns3::Socket Class Referenceabstract

A low-level Socket API based loosely on the BSD Socket API. More...

#include "socket.h"

+ Inheritance diagram for ns3::Socket:
+ Collaboration diagram for ns3::Socket:

Public Types

enum  Ipv6MulticastFilterMode { INCLUDE =1, EXCLUDE }
 Enumeration of the possible filter of a socket. More...
 
enum  SocketErrno {
  ERROR_NOTERROR, ERROR_ISCONN, ERROR_NOTCONN, ERROR_MSGSIZE,
  ERROR_AGAIN, ERROR_SHUTDOWN, ERROR_OPNOTSUPP, ERROR_AFNOSUPPORT,
  ERROR_INVAL, ERROR_BADF, ERROR_NOROUTETOHOST, ERROR_NODEV,
  ERROR_ADDRNOTAVAIL, ERROR_ADDRINUSE, SOCKET_ERRNO_LAST
}
 Enumeration of the possible errors returned by a socket. More...
 
enum  SocketPriority {
  NS3_PRIO_BESTEFFORT = 0, NS3_PRIO_FILLER = 1, NS3_PRIO_BULK = 2, NS3_PRIO_INTERACTIVE_BULK = 4,
  NS3_PRIO_INTERACTIVE = 6, NS3_PRIO_CONTROL = 7
}
 Enumeration of the possible socket priorities. More...
 
enum  SocketType { NS3_SOCK_STREAM, NS3_SOCK_SEQPACKET, NS3_SOCK_DGRAM, NS3_SOCK_RAW }
 Enumeration of the possible socket types. More...
 

Public Member Functions

 Socket (void)
 
virtual ~Socket (void)
 
virtual int Bind (const Address &address)=0
 Allocate a local endpoint for this socket. More...
 
virtual int Bind ()=0
 Allocate a local IPv4 endpoint for this socket. More...
 
virtual int Bind6 ()=0
 Allocate a local IPv6 endpoint for this socket. More...
 
virtual void BindToNetDevice (Ptr< NetDevice > netdevice)
 Bind a socket to specific device. More...
 
virtual int Close (void)=0
 Close a socket. More...
 
virtual int Connect (const Address &address)=0
 Initiate a connection to a remote host. More...
 
virtual bool GetAllowBroadcast () const =0
 Query whether broadcast datagram transmissions are allowed. More...
 
Ptr< NetDeviceGetBoundNetDevice ()
 Returns socket's bound NetDevice, if any. More...
 
virtual enum Socket::SocketErrno GetErrno (void) const =0
 Get last error number. More...
 
uint8_t GetIpTos (void) const
 Query the value of IP Type of Service of this socket. More...
 
virtual uint8_t GetIpTtl (void) const
 Query the value of IP Time to Live field of this socket. More...
 
virtual uint8_t GetIpv6HopLimit (void) const
 Query the value of IP Hop Limit field of this socket. More...
 
uint8_t GetIpv6Tclass (void) const
 Query the value of IPv6 Traffic Class field of this socket. More...
 
virtual Ptr< NodeGetNode (void) const =0
 Return the node this socket is associated with. More...
 
virtual int GetPeerName (Address &address) const =0
 Get the peer address of a connected socket. More...
 
uint8_t GetPriority (void) const
 Query the priority value of this socket. More...
 
virtual uint32_t GetRxAvailable (void) const =0
 Return number of bytes which can be returned from one or multiple calls to Recv. More...
 
virtual enum Socket::SocketType GetSocketType (void) const =0
 
virtual int GetSockName (Address &address) const =0
 Get socket address. More...
 
virtual uint32_t GetTxAvailable (void) const =0
 Returns the number of bytes which can be sent in a single call to Send. More...
 
virtual void Ipv6JoinGroup (Ipv6Address address, Ipv6MulticastFilterMode filterMode, std::vector< Ipv6Address > sourceAddresses)
 Joins a IPv6 multicast group. More...
 
virtual void Ipv6JoinGroup (Ipv6Address address)
 Joins a IPv6 multicast group without filters. More...
 
virtual void Ipv6LeaveGroup (void)
 Leaves IPv6 multicast group this socket is joined to. More...
 
bool IsIpRecvTos (void) const
 Ask if the socket is currently passing information about IP Type of Service up the stack. More...
 
bool IsIpRecvTtl (void) const
 Ask if the socket is currently passing information about IP_TTL up the stack. More...
 
bool IsIpv6RecvHopLimit (void) const
 Ask if the socket is currently passing information about IPv6 Hop Limit up the stack. More...
 
bool IsIpv6RecvTclass (void) const
 Ask if the socket is currently passing information about IPv6 Traffic Class up the stack. More...
 
bool IsRecvPktInfo () const
 Get status indicating whether enable/disable packet information to socket. More...
 
virtual int Listen (void)=0
 Listen for incoming connections. More...
 
virtual Ptr< PacketRecv (uint32_t maxSize, uint32_t flags)=0
 Read data from the socket. More...
 
Ptr< PacketRecv (void)
 Read a single packet from the socket. More...
 
int Recv (uint8_t *buf, uint32_t size, uint32_t flags)
 Recv data (or dummy data) from the remote host. More...
 
virtual Ptr< PacketRecvFrom (uint32_t maxSize, uint32_t flags, Address &fromAddress)=0
 Read a single packet from the socket and retrieve the sender address. More...
 
Ptr< PacketRecvFrom (Address &fromAddress)
 Read a single packet from the socket and retrieve the sender address. More...
 
int RecvFrom (uint8_t *buf, uint32_t size, uint32_t flags, Address &fromAddress)
 Read a single packet from the socket and retrieve the sender address. More...
 
virtual int Send (Ptr< Packet > p, uint32_t flags)=0
 Send data (or dummy data) to the remote host. More...
 
int Send (Ptr< Packet > p)
 Send data (or dummy data) to the remote host. More...
 
int Send (const uint8_t *buf, uint32_t size, uint32_t flags)
 Send data (or dummy data) to the remote host. More...
 
virtual int SendTo (Ptr< Packet > p, uint32_t flags, const Address &toAddress)=0
 Send data to a specified peer. More...
 
int SendTo (const uint8_t *buf, uint32_t size, uint32_t flags, const Address &address)
 Send data to a specified peer. More...
 
void SetAcceptCallback (Callback< bool, Ptr< Socket >, const Address &> connectionRequest, Callback< void, Ptr< Socket >, const Address &> newConnectionCreated)
 Accept connection requests from remote hosts. More...
 
virtual bool SetAllowBroadcast (bool allowBroadcast)=0
 Configure whether broadcast datagram transmissions are allowed. More...
 
void SetCloseCallbacks (Callback< void, Ptr< Socket > > normalClose, Callback< void, Ptr< Socket > > errorClose)
 Detect socket recv() events such as graceful shutdown or error. More...
 
void SetConnectCallback (Callback< void, Ptr< Socket > > connectionSucceeded, Callback< void, Ptr< Socket > > connectionFailed)
 Specify callbacks to allow the caller to determine if the connection succeeds of fails. More...
 
void SetDataSentCallback (Callback< void, Ptr< Socket >, uint32_t > dataSent)
 Notify application when a packet has been sent from transport protocol (non-standard socket call) More...
 
void SetIpRecvTos (bool ipv4RecvTos)
 Tells a socket to pass information about IP Type of Service up the stack. More...
 
void SetIpRecvTtl (bool ipv4RecvTtl)
 Tells a socket to pass information about IP_TTL up the stack. More...
 
void SetIpTos (uint8_t ipTos)
 Manually set IP Type of Service field. More...
 
virtual void SetIpTtl (uint8_t ipTtl)
 Manually set IP Time to Live field. More...
 
virtual void SetIpv6HopLimit (uint8_t ipHopLimit)
 Manually set IPv6 Hop Limit. More...
 
void SetIpv6RecvHopLimit (bool ipv6RecvHopLimit)
 Tells a socket to pass information about IPv6 Hop Limit up the stack. More...
 
void SetIpv6RecvTclass (bool ipv6RecvTclass)
 Tells a socket to pass information about IPv6 Traffic Class up the stack. More...
 
void SetIpv6Tclass (int ipTclass)
 Manually set IPv6 Traffic Class field. More...
 
void SetPriority (uint8_t priority)
 Manually set the socket priority. More...
 
void SetRecvCallback (Callback< void, Ptr< Socket > >)
 Notify application when new data is available to be read. More...
 
void SetRecvPktInfo (bool flag)
 Enable/Disable receive packet information to socket. More...
 
void SetSendCallback (Callback< void, Ptr< Socket >, uint32_t > sendCb)
 Notify application when space in transmit buffer is added. More...
 
virtual int ShutdownRecv (void)=0
 
virtual int ShutdownSend (void)=0
 
- Public Member Functions inherited from ns3::Object
 Object ()
 Constructor. More...
 
virtual ~Object ()
 Destructor. More...
 
void AggregateObject (Ptr< Object > other)
 Aggregate two Objects together. More...
 
void Dispose (void)
 Dispose of this Object. More...
 
AggregateIterator GetAggregateIterator (void) const
 Get an iterator to the Objects aggregated to this one. More...
 
virtual TypeId GetInstanceTypeId (void) const
 Get the most derived TypeId for this Object. More...
 
template<typename T >
Ptr< T > GetObject (void) const
 Get a pointer to the requested aggregated Object. More...
 
template<typename T >
Ptr< T > GetObject (TypeId tid) const
 Get a pointer to the requested aggregated Object by TypeId. More...
 
template<>
Ptr< ObjectGetObject () const
 
template<>
Ptr< ObjectGetObject (TypeId tid) const
 
void Initialize (void)
 Invoke DoInitialize on all Objects aggregated to this one. More...
 
bool IsInitialized (void) const
 Check if the object has been initialized. More...
 
- Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter >
 SimpleRefCount ()
 Default constructor. More...
 
 SimpleRefCount (const SimpleRefCount &o)
 Copy constructor. More...
 
uint32_t GetReferenceCount (void) const
 Get the reference count of the object. More...
 
SimpleRefCountoperator= (const SimpleRefCount &o)
 Assignment operator. More...
 
void Ref (void) const
 Increment the reference count. More...
 
void Unref (void) const
 Decrement the reference count. More...
 
- Public Member Functions inherited from ns3::ObjectBase
virtual ~ObjectBase ()
 Virtual destructor. More...
 
void GetAttribute (std::string name, AttributeValue &value) const
 Get the value of an attribute, raising fatal errors if unsuccessful. More...
 
bool GetAttributeFailSafe (std::string name, AttributeValue &value) const
 Get the value of an attribute without raising erros. More...
 
void SetAttribute (std::string name, const AttributeValue &value)
 Set a single attribute, raising fatal errors if unsuccessful. More...
 
bool SetAttributeFailSafe (std::string name, const AttributeValue &value)
 Set a single attribute without raising errors. More...
 
bool TraceConnect (std::string name, std::string context, const CallbackBase &cb)
 Connect a TraceSource to a Callback with a context. More...
 
bool TraceConnectWithoutContext (std::string name, const CallbackBase &cb)
 Connect a TraceSource to a Callback without a context. More...
 
bool TraceDisconnect (std::string name, std::string context, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected with a context. More...
 
bool TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected without a context. More...
 

Static Public Member Functions

static Ptr< SocketCreateSocket (Ptr< Node > node, TypeId tid)
 This method wraps the creation of sockets that is performed on a given node by a SocketFactory specified by TypeId. More...
 
static TypeId GetTypeId (void)
 Get the type ID. More...
 
static uint8_t IpTos2Priority (uint8_t ipTos)
 Return the priority corresponding to a given TOS value. More...
 
- Static Public Member Functions inherited from ns3::Object
static TypeId GetTypeId (void)
 Register this type. More...
 
- Static Public Member Functions inherited from ns3::ObjectBase
static TypeId GetTypeId (void)
 Get the type ID. More...
 

Protected Member Functions

virtual void DoDispose (void)
 Destructor implementation. More...
 
bool IsManualIpTtl (void) const
 Checks if the socket has a specific IPv4 TTL set. More...
 
bool IsManualIpv6HopLimit (void) const
 Checks if the socket has a specific IPv6 Hop Limit set. More...
 
bool IsManualIpv6Tclass (void) const
 Checks if the socket has a specific IPv6 Tclass set. More...
 
void NotifyConnectionFailed (void)
 Notify through the callback (if set) that the connection has not been established due to an error. More...
 
bool NotifyConnectionRequest (const Address &from)
 Notify through the callback (if set) that an incoming connection is being requested by a remote host. More...
 
void NotifyConnectionSucceeded (void)
 Notify through the callback (if set) that the connection has been established. More...
 
void NotifyDataRecv (void)
 Notify through the callback (if set) that some data have been received. More...
 
void NotifyDataSent (uint32_t size)
 Notify through the callback (if set) that some data have been sent. More...
 
void NotifyErrorClose (void)
 Notify through the callback (if set) that the connection has been closed due to an error. More...
 
void NotifyNewConnectionCreated (Ptr< Socket > socket, const Address &from)
 Notify through the callback (if set) that a new connection has been created. More...
 
void NotifyNormalClose (void)
 Notify through the callback (if set) that the connection has been closed. More...
 
void NotifySend (uint32_t spaceAvailable)
 Notify through the callback (if set) that some data have been sent. More...
 
- Protected Member Functions inherited from ns3::Object
 Object (const Object &o)
 Copy an Object. More...
 
virtual void DoInitialize (void)
 Initialize() implementation. More...
 
virtual void NotifyNewAggregate (void)
 Notify all Objects aggregated to this one of a new Object being aggregated. More...
 
- Protected Member Functions inherited from ns3::ObjectBase
void ConstructSelf (const AttributeConstructionList &attributes)
 Complete construction of ObjectBase; invoked by derived classes. More...
 
virtual void NotifyConstructionCompleted (void)
 Notifier called once the ObjectBase is fully constructed. More...
 

Protected Attributes

Ptr< NetDevicem_boundnetdevice
 the device this socket is bound to (might be null). More...
 
Ipv6Address m_ipv6MulticastGroupAddress
 IPv6 multicast group address. More...
 
bool m_recvPktInfo
 if the socket should add packet info tags to the packet forwarded to L4. More...
 

Private Attributes

Callback< void, Ptr< Socket > > m_connectionFailed
 connection failed callback More...
 
Callback< bool, Ptr< Socket >, const Address & > m_connectionRequest
 connection request callback More...
 
Callback< void, Ptr< Socket > > m_connectionSucceeded
 connection succeeded callback More...
 
Callback< void, Ptr< Socket >, uint32_t > m_dataSent
 data sent callback More...
 
Callback< void, Ptr< Socket > > m_errorClose
 connection closed due to errors callback More...
 
bool m_ipRecvTos
 socket forwards IPv4 TOS tag to L4 More...
 
bool m_ipRecvTtl
 socket forwards IPv4 TTL tag to L4 More...
 
uint8_t m_ipTos
 the socket IPv4 TOS More...
 
uint8_t m_ipTtl
 the socket IPv4 TTL More...
 
uint8_t m_ipv6HopLimit
 the socket IPv6 Hop Limit More...
 
bool m_ipv6RecvHopLimit
 socket forwards IPv6 Hop Limit tag to L4 More...
 
bool m_ipv6RecvTclass
 socket forwards IPv6 Tclass tag to L4 More...
 
uint8_t m_ipv6Tclass
 the socket IPv6 Tclass More...
 
bool m_manualIpTtl
 socket has IPv4 TTL set More...
 
bool m_manualIpv6HopLimit
 socket has IPv6 Hop Limit set More...
 
bool m_manualIpv6Tclass
 socket has IPv6 Tclass set More...
 
Callback< void, Ptr< Socket >, const Address & > m_newConnectionCreated
 connection created callback More...
 
Callback< void, Ptr< Socket > > m_normalClose
 connection closed callback More...
 
uint8_t m_priority
 the socket priority More...
 
Callback< void, Ptr< Socket > > m_receivedData
 data received callback More...
 
Callback< void, Ptr< Socket >, uint32_t > m_sendCb
 packet sent callback More...
 

Additional Inherited Members

Detailed Description

A low-level Socket API based loosely on the BSD Socket API.


Introspection did not find any typical Config paths.

A few things to keep in mind about this type of socket:

  • it uses ns-3 API constructs such as class ns3::Address instead of C-style structs
  • in contrast to the original BSD socket API, this API is asynchronous: it does not contain blocking calls. Sending and receiving operations must make use of the callbacks provided.
  • It also uses class ns3::Packet as a fancy byte buffer, allowing data to be passed across the API using an ns-3 Packet instead of a raw data pointer.
  • Not all of the full POSIX sockets API is supported

Other than that, it tries to stick to the BSD API to make it easier for those who know the BSD API to use this API. More details are provided in the ns-3 tutorial.


No Attributes are defined for this type.
No TraceSources are defined for this type.
Size of this type is 152 bytes (on a 64-bit architecture).

Definition at line 66 of file socket.h.

Member Enumeration Documentation

◆ Ipv6MulticastFilterMode

Enumeration of the possible filter of a socket.

A socket can have filters on specific sources to include only packets incoming from them, or to exclude packets incoming from specific sources. Moreover, inclusion and exclusion also works as a leave, since "joining" a group without allowed sources is equivalent to leaving it.

Enumerator
INCLUDE 
EXCLUDE 

Definition at line 138 of file socket.h.

◆ SocketErrno

Enumeration of the possible errors returned by a socket.

Enumerator
ERROR_NOTERROR 
ERROR_ISCONN 
ERROR_NOTCONN 
ERROR_MSGSIZE 
ERROR_AGAIN 
ERROR_SHUTDOWN 
ERROR_OPNOTSUPP 
ERROR_AFNOSUPPORT 
ERROR_INVAL 
ERROR_BADF 
ERROR_NOROUTETOHOST 
ERROR_NODEV 
ERROR_ADDRNOTAVAIL 
ERROR_ADDRINUSE 
SOCKET_ERRNO_LAST 

Definition at line 82 of file socket.h.

◆ SocketPriority

Enumeration of the possible socket priorities.

Names and corresponding values are derived from the Linux TC_PRIO_* macros

Enumerator
NS3_PRIO_BESTEFFORT 
NS3_PRIO_FILLER 
NS3_PRIO_BULK 
NS3_PRIO_INTERACTIVE_BULK 
NS3_PRIO_INTERACTIVE 
NS3_PRIO_CONTROL 

Definition at line 118 of file socket.h.

◆ SocketType

Enumeration of the possible socket types.

Enumerator
NS3_SOCK_STREAM 
NS3_SOCK_SEQPACKET 
NS3_SOCK_DGRAM 
NS3_SOCK_RAW 

Definition at line 104 of file socket.h.

Constructor & Destructor Documentation

◆ Socket()

ns3::Socket::Socket ( void  )

◆ ~Socket()

ns3::Socket::~Socket ( void  )
virtual

Definition at line 65 of file socket.cc.

References NS_LOG_FUNCTION.

Member Function Documentation

◆ Bind() [1/2]

virtual int ns3::Socket::Bind ( const Address address)
pure virtual

Allocate a local endpoint for this socket.

Parameters
addressthe address to try to allocate
Returns
0 on success, -1 on failure.

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::UdpSocketImpl, ns3::Ipv6RawSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by ns3::NoBackhaulEpcHelper::AddEnb(), ns3::NoBackhaulEpcHelper::AddS1Interface(), ns3::EpcX2::AddX2Interface(), Bug772ChainTest::CreateDevices(), ChainRegressionTest::CreateDevices(), ns3::olsr::Bug780Test::CreateNodes(), ns3::olsr::RoutingProtocol::DoInitialize(), ns3::Rip::DoInitialize(), ns3::RipNg::DoInitialize(), TcpSynConnectionFailedTest::DoRun(), DualStackTestCase::DoRun(), UdpSocketLoopbackTest::DoRun(), TcpEndPointBug2211Test::DoRun(), Ns3TcpLossTestCase::DoRun(), ns3::aodv::LoopbackTestCase::DoRun(), Ipv6RawSocketImplTest::DoRun(), Ns3TcpStateTestCase::DoRun(), Ipv4RawSocketImplTest::DoRun(), IcmpEchoReplyTestCase::DoRun(), Udp6SocketLoopbackTest::DoRun(), UdpSocketImplTest::DoRun(), IcmpTimeExceedTestCase::DoRun(), IcmpV6EchoReplyTestCase::DoRun(), Udp6SocketImplTest::DoRun(), IcmpV6TimeExceedTestCase::DoRun(), Ipv4DynamicGlobalRoutingTestCase::DoRun(), HwmpProactiveRegressionTest::InstallApplications(), FlameRegressionTest::InstallApplications(), HwmpDoRfRegressionTest::InstallApplications(), HwmpSimplestRegressionTest::InstallApplications(), HwmpReactiveRegressionTest::InstallApplications(), ns3::NoBackhaulEpcHelper::NoBackhaulEpcHelper(), ns3::aodv::RoutingProtocol::NotifyAddAddress(), ns3::dsdv::RoutingProtocol::NotifyAddAddress(), ns3::aodv::RoutingProtocol::NotifyInterfaceUp(), ns3::dsdv::RoutingProtocol::NotifyInterfaceUp(), ns3::Rip::NotifyInterfaceUp(), ns3::RipNg::NotifyInterfaceUp(), ns3::aodv::RoutingProtocol::NotifyRemoveAddress(), ns3::dsdv::RoutingProtocol::NotifyRemoveAddress(), ns3::ThreeGppHttpClient::OpenConnection(), NetAnimExperiment::Run(), Experiment::Run(), ns3::Ping6::Send(), ns3::SocketWriter::StartApplication(), ns3::UdpEchoServer::StartApplication(), ns3::V4TraceRoute::StartApplication(), ns3::PacketSocketServer::StartApplication(), MyApp::StartApplication(), ns3::UdpClient::StartApplication(), ns3::V4Ping::StartApplication(), ns3::PacketSocketClient::StartApplication(), Receiver::StartApplication(), ns3::UdpServer::StartApplication(), SimpleSource::StartApplication(), ns3::Ping6::StartApplication(), EpsBearerTagUdpClient::StartApplication(), ns3::DhcpServer::StartApplication(), ns3::BsmApplication::StartApplication(), ns3::DhcpClient::StartApplication(), ns3::BulkSendApplication::StartApplication(), ns3::PacketSink::StartApplication(), ns3::Radvd::StartApplication(), ns3::UdpTraceClient::StartApplication(), ns3::OnOffApplication::StartApplication(), ns3::UdpEchoClient::StartApplication(), ns3::ThreeGppHttpServer::StartApplication(), SixlowpanFragmentationTest::StartClient(), Ipv4FragmentationTest::StartClient(), Ipv6FragmentationTest::StartClient(), StartFlow(), SixlowpanFragmentationTest::StartServer(), Ipv4FragmentationTest::StartServer(), Ipv6FragmentationTest::StartServer(), and Tunnel::Tunnel().

◆ Bind() [2/2]

virtual int ns3::Socket::Bind ( )
pure virtual

Allocate a local IPv4 endpoint for this socket.

Returns
0 on success, -1 on failure.

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::UdpSocketImpl, ns3::Ipv6RawSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

◆ Bind6()

virtual int ns3::Socket::Bind6 ( )
pure virtual

◆ BindToNetDevice()

void ns3::Socket::BindToNetDevice ( Ptr< NetDevice netdevice)
virtual

Bind a socket to specific device.

This method corresponds to using setsockopt() SO_BINDTODEVICE of real network or BSD sockets. If set on a socket, this option will force packets to leave the bound device regardless of the device that IP routing would naturally choose. In the receive direction, only packets received from the bound interface will be delivered.

This option has no particular relationship to binding sockets to an address via Socket::Bind (). It is possible to bind sockets to a specific IP address on the bound interface by calling both Socket::Bind (address) and Socket::BindToNetDevice (device), but it is also possible to bind to mismatching device and address, even if the socket can not receive any packets as a result.

Parameters
netdevicePointer to NetDevice of desired interface
Returns
nothing

Reimplemented in ns3::TcpSocketBase, ns3::UdpSocketImpl, and ns3::NscTcpSocketImpl.

Definition at line 330 of file socket.cc.

References ns3::Node::GetDevice(), ns3::Node::GetNDevices(), GetNode(), m_boundnetdevice, NS_ASSERT_MSG, and NS_LOG_FUNCTION.

Referenced by BindSock(), ns3::NscTcpSocketImpl::BindToNetDevice(), ns3::UdpSocketImpl::BindToNetDevice(), ns3::TcpSocketBase::BindToNetDevice(), ns3::olsr::RoutingProtocol::DoInitialize(), Ipv6RipngSplitHorizonStrategyTest::DoRun(), Ipv4RipSplitHorizonStrategyTest::DoRun(), ns3::aodv::RoutingProtocol::NotifyAddAddress(), ns3::dsdv::RoutingProtocol::NotifyAddAddress(), ns3::aodv::RoutingProtocol::NotifyInterfaceUp(), ns3::dsdv::RoutingProtocol::NotifyInterfaceUp(), ns3::aodv::RoutingProtocol::NotifyRemoveAddress(), ns3::DhcpServer::StartApplication(), ns3::BsmApplication::StartApplication(), and ns3::DhcpClient::StartApplication().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Close()

virtual int ns3::Socket::Close ( void  )
pure virtual

Close a socket.

Returns
zero on success, -1 on failure.

After the Close call, the socket is no longer valid, and cannot safely be used for subsequent operations.

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by ns3::SocketWriter::Close(), ns3::Radvd::DoDispose(), ns3::olsr::RoutingProtocol::DoDispose(), ns3::Rip::DoDispose(), ns3::RipNg::DoDispose(), ns3::aodv::LoopbackTestCase::DoRun(), Experiment::GenerateTraffic(), GenerateTraffic(), ns3::BsmApplication::GenerateWaveTraffic(), TcpEndPointBug2211Test::HandleConnect(), ns3::aodv::RoutingProtocol::NotifyInterfaceDown(), ns3::dsdv::RoutingProtocol::NotifyInterfaceDown(), ns3::aodv::RoutingProtocol::NotifyRemoveAddress(), TcpEndPointBug2211Test::Recv(), ns3::BulkSendApplication::SendData(), SendPacket(), ns3::TcpGeneralTest::SendPacket(), TcpTestCase::ServerHandleSend(), TcpTestCase::SourceHandleRecv(), ns3::UdpEchoServer::StopApplication(), ns3::V4TraceRoute::StopApplication(), ns3::PacketSocketServer::StopApplication(), MyApp::StopApplication(), ns3::V4Ping::StopApplication(), ns3::PacketSocketClient::StopApplication(), SimpleSource::StopApplication(), ns3::DhcpClient::StopApplication(), ns3::PacketSink::StopApplication(), ns3::BulkSendApplication::StopApplication(), ns3::OnOffApplication::StopApplication(), ns3::UdpEchoClient::StopApplication(), ns3::ThreeGppHttpServer::StopApplication(), ns3::ThreeGppHttpClient::StopApplication(), WriteUntilBufferFull(), Ns3TcpLossTestCase::WriteUntilBufferFull(), and Ns3TcpStateTestCase::WriteUntilBufferFull().

+ Here is the caller graph for this function:

◆ Connect()

virtual int ns3::Socket::Connect ( const Address address)
pure virtual

Initiate a connection to a remote host.

Parameters
addressAddress of remote.
Returns
0 on success, -1 on error (in which case errno is set).

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by ns3::DhcpClient::AcceptAck(), ns3::NoBackhaulEpcHelper::AddEnb(), ns3::SocketWriter::Connect(), Bug772ChainTest::CreateDevices(), ChainRegressionTest::CreateDevices(), ns3::olsr::Bug780Test::CreateNodes(), TcpSynConnectionFailedTest::DoRun(), DualStackTestCase::DoRun(), TcpEndPointBug2211Test::DoRun(), HwmpProactiveRegressionTest::InstallApplications(), FlameRegressionTest::InstallApplications(), HwmpDoRfRegressionTest::InstallApplications(), HwmpSimplestRegressionTest::InstallApplications(), HwmpReactiveRegressionTest::InstallApplications(), ns3::ThreeGppHttpClient::OpenConnection(), RunSimulation(), TcpTestCase::SetupDefaultSim(), TcpTestCase::SetupDefaultSim6(), MyApp::StartApplication(), ns3::UdpClient::StartApplication(), ns3::V4Ping::StartApplication(), ns3::PacketSocketClient::StartApplication(), SimpleSource::StartApplication(), EpsBearerTagUdpClient::StartApplication(), ns3::BsmApplication::StartApplication(), ns3::BulkSendApplication::StartApplication(), ns3::UdpTraceClient::StartApplication(), ns3::OnOffApplication::StartApplication(), ns3::UdpEchoClient::StartApplication(), SixlowpanFragmentationTest::StartClient(), Ipv4FragmentationTest::StartClient(), Ipv6FragmentationTest::StartClient(), StartFlow(), Ns3TcpLossTestCase::StartFlow(), and Ns3TcpStateTestCase::StartFlow().

+ Here is the caller graph for this function:

◆ CreateSocket()

Ptr< Socket > ns3::Socket::CreateSocket ( Ptr< Node node,
TypeId  tid 
)
static

This method wraps the creation of sockets that is performed on a given node by a SocketFactory specified by TypeId.

Returns
A smart pointer to a newly created socket.
Parameters
nodeThe node on which to create the socket
tidThe TypeId of a SocketFactory class to use

Definition at line 71 of file socket.cc.

References ns3::Object::GetObject(), NS_ASSERT, and NS_LOG_FUNCTION.

Referenced by ns3::NoBackhaulEpcHelper::AddEnb(), ns3::NoBackhaulEpcHelper::AddS1Interface(), ns3::EpcX2::AddX2Interface(), ns3::olsr::Bug780Test::CreateNodes(), ns3::olsr::RoutingProtocol::DoInitialize(), ns3::Rip::DoInitialize(), ns3::RipNg::DoInitialize(), Ipv6RawSocketImplTest::DoRun(), Ipv4RawSocketImplTest::DoRun(), Udp6SocketImplTest::DoRun(), ns3::NoBackhaulEpcHelper::NoBackhaulEpcHelper(), ns3::aodv::RoutingProtocol::NotifyAddAddress(), ns3::dsdv::RoutingProtocol::NotifyAddAddress(), ns3::aodv::RoutingProtocol::NotifyInterfaceUp(), ns3::dsdv::RoutingProtocol::NotifyInterfaceUp(), ns3::Rip::NotifyInterfaceUp(), ns3::RipNg::NotifyInterfaceUp(), ns3::aodv::RoutingProtocol::NotifyRemoveAddress(), ns3::dsdv::RoutingProtocol::NotifyRemoveAddress(), ns3::ThreeGppHttpClient::OpenConnection(), RunSimulation(), UanExperiment::SetupApplications(), TcpTestCase::SetupDefaultSim(), TcpTestCase::SetupDefaultSim6(), SetupPacketReceive(), DualStackTestCase::SetUpSim(), ns3::SocketWriter::StartApplication(), ns3::UdpEchoServer::StartApplication(), ns3::V4TraceRoute::StartApplication(), ns3::PacketSocketServer::StartApplication(), ns3::UdpClient::StartApplication(), ns3::V4Ping::StartApplication(), ns3::PacketSocketClient::StartApplication(), ns3::UdpServer::StartApplication(), ns3::Ping6::StartApplication(), ns3::DhcpServer::StartApplication(), ns3::BsmApplication::StartApplication(), ns3::DhcpClient::StartApplication(), ns3::BulkSendApplication::StartApplication(), ns3::PacketSink::StartApplication(), ns3::Radvd::StartApplication(), ns3::UdpTraceClient::StartApplication(), ns3::OnOffApplication::StartApplication(), ns3::UdpEchoClient::StartApplication(), ns3::ThreeGppHttpServer::StartApplication(), and Tunnel::Tunnel().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ DoDispose()

void ns3::Socket::DoDispose ( void  )
protectedvirtual

Destructor implementation.

This method is called by Dispose() or by the Object's destructor, whichever comes first.

Subclasses are expected to implement their real destruction code in an overridden 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.

Reimplemented in ns3::Ipv6RawSocketImpl, ns3::PacketSocket, and ns3::Ipv4RawSocketImpl.

Definition at line 315 of file socket.cc.

References m_connectionFailed, m_connectionRequest, m_connectionSucceeded, m_dataSent, m_errorClose, m_newConnectionCreated, m_normalClose, m_receivedData, m_sendCb, and NS_LOG_FUNCTION.

Referenced by ns3::Ipv4RawSocketImpl::DoDispose(), and ns3::Ipv6RawSocketImpl::DoDispose().

+ Here is the caller graph for this function:

◆ GetAllowBroadcast()

virtual bool ns3::Socket::GetAllowBroadcast ( ) const
pure virtual

Query whether broadcast datagram transmissions are allowed.

This method corresponds to using getsockopt() SO_BROADCAST of real network or BSD sockets.

Returns
true if broadcast is allowed, false otherwise

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

◆ GetBoundNetDevice()

Ptr< NetDevice > ns3::Socket::GetBoundNetDevice ( void  )

Returns socket's bound NetDevice, if any.

This method corresponds to using getsockopt() SO_BINDTODEVICE of real network or BSD sockets.

Returns
Pointer to interface.

Definition at line 351 of file socket.cc.

References m_boundnetdevice, and NS_LOG_FUNCTION.

Referenced by ns3::NscTcpSocketImpl::Bind(), ns3::UdpSocketImpl::Bind(), ns3::TcpSocketBase::Bind(), ns3::TcpSocketBase::CompleteFork(), ns3::Ipv4RawSocketImpl::ForwardUp(), ns3::Ipv6RawSocketImpl::ForwardUp(), and srcSocketRecv().

+ Here is the caller graph for this function:

◆ GetErrno()

◆ GetIpTos()

uint8_t ns3::Socket::GetIpTos ( void  ) const

Query the value of IP Type of Service of this socket.

This method corresponds to using getsockopt () IP_TOS of real network or BSD sockets.

Returns
The raw IP TOS value

Definition at line 453 of file socket.cc.

References m_ipTos.

Referenced by ns3::TcpSocketBase::AddSocketTags(), ns3::UdpSocketImpl::DoSend(), ns3::UdpSocketImpl::GetPeerName(), ns3::Ipv4RawSocketImpl::Send(), ns3::TcpSocketCongestedRouter::SendDataPacket(), TcpDctcpCongestedRouter::SendDataPacket(), and ns3::TcpSocketSmallAcks::SendEmptyPacket().

+ Here is the caller graph for this function:

◆ GetIpTtl()

uint8_t ns3::Socket::GetIpTtl ( void  ) const
virtual

Query the value of IP Time to Live field of this socket.

This method corresponds to using getsockopt () IP_TTL of real network or BSD sockets.

Returns
The raw IP TTL value

Definition at line 520 of file socket.cc.

References m_ipTtl.

Referenced by ns3::TcpSocketBase::AddSocketTags(), ns3::UdpSocketImpl::DoSendTo(), ns3::UdpSocket::GetTypeId(), ns3::TcpSocketCongestedRouter::SendDataPacket(), TcpDctcpCongestedRouter::SendDataPacket(), ns3::TcpSocketSmallAcks::SendEmptyPacket(), and ns3::Ipv4RawSocketImpl::SendTo().

+ Here is the caller graph for this function:

◆ GetIpv6HopLimit()

uint8_t ns3::Socket::GetIpv6HopLimit ( void  ) const
virtual

Query the value of IP Hop Limit field of this socket.

This method corresponds to using getsockopt () IPV6_HOPLIMIT of real network or BSD sockets.

Returns
The raw IPv6 Hop Limit value

Definition at line 545 of file socket.cc.

References m_ipv6HopLimit.

Referenced by ns3::TcpSocketBase::AddSocketTags(), ns3::UdpSocketImpl::DoSendTo(), ns3::TcpSocketCongestedRouter::SendDataPacket(), TcpDctcpCongestedRouter::SendDataPacket(), ns3::TcpSocketSmallAcks::SendEmptyPacket(), and ns3::Ipv6RawSocketImpl::SendTo().

+ Here is the caller graph for this function:

◆ GetIpv6Tclass()

uint8_t ns3::Socket::GetIpv6Tclass ( void  ) const

Query the value of IPv6 Traffic Class field of this socket.

This method corresponds to using getsockopt () IPV6_TCLASS of real network or BSD sockets.

Returns
The raw IPV6_TCLASS value

Definition at line 495 of file socket.cc.

References m_ipv6Tclass.

Referenced by ns3::TcpSocketBase::AddSocketTags(), ns3::UdpSocketImpl::DoSendTo(), ns3::TcpSocketCongestedRouter::SendDataPacket(), TcpDctcpCongestedRouter::SendDataPacket(), ns3::TcpSocketSmallAcks::SendEmptyPacket(), and ns3::Ipv6RawSocketImpl::SendTo().

+ Here is the caller graph for this function:

◆ GetNode()

virtual Ptr<Node> ns3::Socket::GetNode ( void  ) const
pure virtual

Return the node this socket is associated with.

Returns
the node

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::UdpSocketImpl, ns3::Ipv6RawSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by BindToNetDevice(), Bug772ChainTest::CreateDevices(), ns3::TcpGeneralTest::DataSentCb(), SixlowpanFragmentationTest::DoRun(), ns3::aodv::LoopbackTestCase::DoRun(), Ipv4FragmentationTest::DoRun(), Ipv6FragmentationTest::DoRun(), ns3::TcpGeneralTest::ErrorCloseCb(), ns3::BsmApplication::GenerateWaveTraffic(), HwmpProactiveRegressionTest::InstallApplications(), FlameRegressionTest::InstallApplications(), HwmpDoRfRegressionTest::InstallApplications(), HwmpSimplestRegressionTest::InstallApplications(), HwmpReactiveRegressionTest::InstallApplications(), ns3::TcpGeneralTest::NormalCloseCb(), PrintReceivedPacket(), PrintReceivedRoutingPacket(), Ipv4DeduplicationTest::ReceivePkt(), ns3::BsmApplication::ReceiveWavePacket(), ns3::aodv::LoopbackTestCase::SendData(), Ipv4StaticRoutingSlash32TestCase::SendData(), SixlowpanHc1ImplTest::SendData(), Ipv6ForwardingTest::SendData(), Ipv6RipngTest::SendData(), Ipv4RipTest::SendData(), Ipv4ForwardingTest::SendData(), SixlowpanIphcImplTest::SendData(), Ipv4RawSocketImplTest::SendData(), Ipv6RawSocketImplTest::SendData(), Bug772ChainTest::SendData(), HwmpProactiveRegressionTest::SendData(), FlameRegressionTest::SendData(), IcmpEchoReplyTestCase::SendData(), HwmpSimplestRegressionTest::SendData(), HwmpReactiveRegressionTest::SendData(), UdpSocketImplTest::SendData(), IcmpTimeExceedTestCase::SendData(), Ipv4RipCountToInfinityTest::SendData(), Ipv6RipngCountToInfinityTest::SendData(), IcmpV6EchoReplyTestCase::SendData(), IcmpV6TimeExceedTestCase::SendData(), Ipv4GlobalRoutingSlash32TestCase::SendData(), Ipv4RawSocketImplTest::SendData_IpHdr(), Ipv4HeaderTest::SendData_IpHdr_Dscp(), HwmpDoRfRegressionTest::SendDataA(), HwmpDoRfRegressionTest::SendDataB(), HwmpDoRfRegressionTest::SendDataC(), UdpSocketImplTest::SendDataTo(), Udp6SocketImplTest::SendDataTo(), Ipv4DeduplicationTest::SendPacket(), and ns3::BsmApplication::StartApplication().

◆ GetPeerName()

virtual int ns3::Socket::GetPeerName ( Address address) const
pure virtual

Get the peer address of a connected socket.

Parameters
addressthe address this socket is connected to.
Returns
0 if success, -1 otherwise

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::UdpSocketImpl, ns3::Ipv6RawSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by ns3::BulkSendApplication::ConnectionSucceeded(), ns3::BulkSendApplication::DataSend(), Ipv4FragmentationTest::SendClient(), ns3::OnOffApplication::SendPacket(), TcpTestCase::SetupDefaultSim(), and TcpTestCase::SetupDefaultSim6().

+ Here is the caller graph for this function:

◆ GetPriority()

uint8_t ns3::Socket::GetPriority ( void  ) const

Query the priority value of this socket.

This method corresponds to using getsockopt () SO_PRIORITY of real network or BSD sockets.

Returns
The priority value

Definition at line 396 of file socket.cc.

References m_priority.

Referenced by ns3::TcpSocketBase::AddSocketTags(), ns3::UdpSocketImpl::DoSendTo(), ns3::TcpSocketCongestedRouter::SendDataPacket(), TcpDctcpCongestedRouter::SendDataPacket(), ns3::Ipv4RawSocketImpl::SendTo(), and ns3::PacketSocket::SendTo().

+ Here is the caller graph for this function:

◆ GetRxAvailable()

virtual uint32_t ns3::Socket::GetRxAvailable ( void  ) const
pure virtual

Return number of bytes which can be returned from one or multiple calls to Recv.

Must be possible to call this method from the Recv callback.

Returns
the number of bytes which can be returned from one or multiple Recv calls.

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::UdpSocketImpl, ns3::Ipv6RawSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by UanExperiment::PrintReceivedPacket(), ns3::olsr::Bug780Test::Receive(), ns3::V4TraceRoute::Receive(), ns3::V4Ping::Receive(), Ipv4StaticRoutingSlash32TestCase::ReceivePkt(), UdpSocketLoopbackTest::ReceivePkt(), Ipv6ForwardingTest::ReceivePkt(), Ipv6RipngTest::ReceivePkt(), Ipv4ForwardingTest::ReceivePkt(), Ipv4RipTest::ReceivePkt(), SixlowpanHc1ImplTest::ReceivePkt(), SixlowpanIphcImplTest::ReceivePkt(), Ipv4HeaderTest::ReceivePkt(), Ipv6RawSocketImplTest::ReceivePkt(), Ipv4RawSocketImplTest::ReceivePkt(), Udp6SocketLoopbackTest::ReceivePkt(), Ipv4DeduplicationTest::ReceivePkt(), UdpSocketImplTest::ReceivePkt(), Ipv6RipngCountToInfinityTest::ReceivePkt(), Ipv4RipCountToInfinityTest::ReceivePkt(), Udp6SocketImplTest::ReceivePkt(), Ipv4GlobalRoutingSlash32TestCase::ReceivePkt(), Ipv6RawSocketImplTest::ReceivePkt2(), Ipv4RawSocketImplTest::ReceivePkt2(), UdpSocketImplTest::ReceivePkt2(), Udp6SocketImplTest::ReceivePkt2(), Ipv6RipngSplitHorizonStrategyTest::ReceivePktProbe(), Ipv4RipSplitHorizonStrategyTest::ReceivePktProbe(), ns3::olsr::HelloRegressionTest::ReceivePktProbeA(), ns3::olsr::TcRegressionTest::ReceivePktProbeA(), ns3::olsr::HelloRegressionTest::ReceivePktProbeB(), ns3::olsr::TcRegressionTest::ReceivePktProbeB(), ns3::olsr::TcRegressionTest::ReceivePktProbeC(), TcpEndPointBug2211Test::Recv(), Ipv4PacketInfoTagTest::RxCb(), Ipv6PacketInfoTagTest::RxCb(), TcpTestCase::ServerHandleRecv(), and TcpTestCase::SourceHandleRecv().

+ Here is the caller graph for this function:

◆ GetSocketType()

virtual enum Socket::SocketType ns3::Socket::GetSocketType ( void  ) const
pure virtual
Returns
the socket type, analogous to getsockopt (SO_TYPE)

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, ns3::Ipv6RawSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by SetIpTos(), and ns3::BulkSendApplication::StartApplication().

+ Here is the caller graph for this function:

◆ GetSockName()

◆ GetTxAvailable()

virtual uint32_t ns3::Socket::GetTxAvailable ( void  ) const
pure virtual

Returns the number of bytes which can be sent in a single call to Send.

For datagram sockets, this returns the number of bytes that can be passed atomically through the underlying protocol.

For stream sockets, this returns the available space in bytes left in the transmit buffer.

Returns
The number of bytes which can be sent in a single Send call.

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by ns3::ThreeGppHttpServer::ServeFromTxBuffer(), TcpTestCase::ServerHandleRecv(), TcpTestCase::ServerHandleSend(), TcpTestCase::SourceHandleSend(), StartFlow(), Ns3TcpLossTestCase::StartFlow(), Ns3TcpStateTestCase::StartFlow(), WriteUntilBufferFull(), Ns3TcpLossTestCase::WriteUntilBufferFull(), and Ns3TcpStateTestCase::WriteUntilBufferFull().

+ Here is the caller graph for this function:

◆ GetTypeId()

TypeId ns3::Socket::GetTypeId ( void  )
static

Get the type ID.

Returns
the object TypeId

Definition at line 37 of file socket.cc.

References ns3::TypeId::SetParent().

+ Here is the call graph for this function:

◆ IpTos2Priority()

uint8_t ns3::Socket::IpTos2Priority ( uint8_t  ipTos)
static

Return the priority corresponding to a given TOS value.

This function is implemented after the Linux rt_tos2priority function. The usage of the TOS byte has been originally defined by RFC 1349 (http://www.ietf.org/rfc/rfc1349.txt):

          0     1     2     3     4     5     6     7
      +-----+-----+-----+-----+-----+-----+-----+-----+
      |   PRECEDENCE    |          TOS          | MBZ |
      +-----+-----+-----+-----+-----+-----+-----+-----+

where MBZ stands for 'must be zero'.

The Linux rt_tos2priority function ignores the precedence bits and maps each of the 16 values coded in bits 3-6 as follows:

Bits 3-6 Means Linux Priority
0 Normal Service Best Effort (0)
1 Minimize Monetary Cost Best Effort (0)
2 Maximize Reliability Best Effort (0)
3 mmc+mr Best Effort (0)
4 Maximize Throughput Bulk (2)
5 mmc+mt Bulk (2)
6 mr+mt Bulk (2)
7 mmc+mr+mt Bulk (2)
8 Minimize Delay Interactive (6)
9 mmc+md Interactive (6)
10 mr+md Interactive (6)
11 mmc+mr+md Interactive (6)
12 mt+md Int. Bulk (4)
13 mmc+mt+md Int. Bulk (4)
14 mr+mt+md Int. Bulk (4)
15 mmc+mr+mt+md Int. Bulk (4)

RFC 2474 (http://www.ietf.org/rfc/rfc2474.txt) redefines the TOS byte:

          0     1     2     3     4     5     6     7
      +-----+-----+-----+-----+-----+-----+-----+-----+
      |              DSCP                 |     CU    |
      +-----+-----+-----+-----+-----+-----+-----+-----+

where DSCP is the Differentiated Services Code Point and CU stands for 'currently unused' (actually, RFC 3168 proposes to use these two bits for ECN purposes). The table above allows to determine how the Linux rt_tos2priority function maps each DSCP value to a priority value. Such a mapping is shown below.

DSCP Hex TOS (binary) bits 3-6 Linux Priority
EF 0x2E 101110xx 12-13 Int. Bulk (4)
AF11 0x0A 001010xx 4-5 Bulk (2)
AF21 0x12 010010xx 4-5 Bulk (2)
AF31 0x1A 011010xx 4-5 Bulk (2)
AF41 0x22 100010xx 4-5 Bulk (2)
AF12 0x0C 001100xx 8-9 Interactive (6)
AF22 0x14 010100xx 8-9 Interactive (6)
AF32 0x1C 011100xx 8-9 Interactive (6)
AF42 0x24 100100xx 8-9 Interactive (6)
AF13 0x0E 001110xx 12-13 Int. Bulk (4)
AF23 0x16 010110xx 12-13 Int. Bulk (4)
AF33 0x1E 011110xx 12-13 Int. Bulk (4)
AF43 0x26 100110xx 12-13 Int. Bulk (4)
CS0 0x00 000000xx 0-1 Best Effort (0)
CS1 0x08 001000xx 0-1 Best Effort (0)
CS2 0x10 010000xx 0-1 Best Effort (0)
CS3 0x18 011000xx 0-1 Best Effort (0)
CS4 0x20 100000xx 0-1 Best Effort (0)
CS5 0x28 101000xx 0-1 Best Effort (0)
CS6 0x30 110000xx 0-1 Best Effort (0)
CS7 0x38 111000xx 0-1 Best Effort (0)
Parameters
ipTosthe TOS value (in the range 0..255)
Returns
The priority value corresponding to the given TOS value

Definition at line 402 of file socket.cc.

References NS3_PRIO_BESTEFFORT, NS3_PRIO_BULK, NS3_PRIO_INTERACTIVE, and NS3_PRIO_INTERACTIVE_BULK.

Referenced by ns3::UdpSocketImpl::DoSendTo(), ns3::Ipv4L3Protocol::IpForward(), ns3::Ipv4RawSocketImpl::SendTo(), and SetIpTos().

+ Here is the caller graph for this function:

◆ Ipv6JoinGroup() [1/2]

void ns3::Socket::Ipv6JoinGroup ( Ipv6Address  address,
Ipv6MulticastFilterMode  filterMode,
std::vector< Ipv6Address sourceAddresses 
)
virtual

Joins a IPv6 multicast group.

Based on the filter mode and source addresses this can be interpreted as a join, leave, or modification to source filtering on a multicast group.

Mind that a socket can join only one multicast group. Any attempt to join another group will remove the old one.

Parameters
addressRequested multicast address.
filterModeSocket filtering mode (INCLUDE | EXCLUDE).
sourceAddressesAll the source addresses on which socket is interested or not interested.

Reimplemented in ns3::UdpSocketImpl, and ns3::Ipv6RawSocketImpl.

Definition at line 563 of file socket.cc.

References first::address, NS_ASSERT_MSG, and NS_LOG_FUNCTION.

Referenced by Ipv6JoinGroup(), and Ipv6LeaveGroup().

+ Here is the caller graph for this function:

◆ Ipv6JoinGroup() [2/2]

void ns3::Socket::Ipv6JoinGroup ( Ipv6Address  address)
virtual

Joins a IPv6 multicast group without filters.

A socket can join only one multicast group. Any attempt to join another group will remove the old one.

Parameters
addressGroup address on which socket wants to join.

Definition at line 570 of file socket.cc.

References first::address, EXCLUDE, Ipv6JoinGroup(), and NS_LOG_FUNCTION.

+ Here is the call graph for this function:

◆ Ipv6LeaveGroup()

void ns3::Socket::Ipv6LeaveGroup ( void  )
virtual

Leaves IPv6 multicast group this socket is joined to.

Definition at line 580 of file socket.cc.

References ns3::Ipv6Address::GetAny(), INCLUDE, Ipv6JoinGroup(), ns3::Ipv6Address::IsAny(), m_ipv6MulticastGroupAddress, NS_LOG_FUNCTION, and NS_LOG_INFO.

Referenced by ns3::UdpSocketImpl::Close(), and ns3::Ipv6RawSocketImpl::Close().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ IsIpRecvTos()

bool ns3::Socket::IsIpRecvTos ( void  ) const

Ask if the socket is currently passing information about IP Type of Service up the stack.

This method corresponds to using getsockopt () IP_RECVTOS of real network or BSD sockets.

Returns
Whether the IP_RECVTOS is set

Definition at line 465 of file socket.cc.

References m_ipRecvTos.

Referenced by ns3::Ipv4RawSocketImpl::ForwardUp(), and ns3::UdpSocketImpl::ForwardUp().

+ Here is the caller graph for this function:

◆ IsIpRecvTtl()

bool ns3::Socket::IsIpRecvTtl ( void  ) const

Ask if the socket is currently passing information about IP_TTL up the stack.

This method corresponds to using getsockopt () IP_RECVTTL of real network or BSD sockets.

Returns
Whether the IP_RECVTTL is set

Definition at line 532 of file socket.cc.

References m_ipRecvTtl.

Referenced by ns3::Ipv4RawSocketImpl::ForwardUp(), and ns3::UdpSocketImpl::ForwardUp().

+ Here is the caller graph for this function:

◆ IsIpv6RecvHopLimit()

bool ns3::Socket::IsIpv6RecvHopLimit ( void  ) const

Ask if the socket is currently passing information about IPv6 Hop Limit up the stack.

This method corresponds to using getsockopt () IPV6_RECVHOPLIMIT of real network or BSD sockets.

Returns
Whether the IPV6_RECVHOPLIMIT is set

Definition at line 557 of file socket.cc.

References m_ipv6RecvHopLimit.

Referenced by ns3::Ipv6RawSocketImpl::ForwardUp(), and ns3::UdpSocketImpl::ForwardUp6().

+ Here is the caller graph for this function:

◆ IsIpv6RecvTclass()

bool ns3::Socket::IsIpv6RecvTclass ( void  ) const

Ask if the socket is currently passing information about IPv6 Traffic Class up the stack.

This method corresponds to using getsockopt () IPV6_RECVTCLASS of real network or BSD sockets.

Returns
Whether the IPV6_RECVTCLASS is set

Definition at line 507 of file socket.cc.

References m_ipv6RecvTclass.

Referenced by ns3::Ipv6RawSocketImpl::ForwardUp(), and ns3::UdpSocketImpl::ForwardUp6().

+ Here is the caller graph for this function:

◆ IsManualIpTtl()

bool ns3::Socket::IsManualIpTtl ( void  ) const
protected

Checks if the socket has a specific IPv4 TTL set.

Returns
true if the socket has a IPv4 TTL set, false otherwise.

Definition at line 377 of file socket.cc.

References m_manualIpTtl.

Referenced by ns3::TcpSocketBase::AddSocketTags(), ns3::UdpSocketImpl::DoSendTo(), ns3::TcpSocketCongestedRouter::SendDataPacket(), TcpDctcpCongestedRouter::SendDataPacket(), ns3::TcpSocketSmallAcks::SendEmptyPacket(), and ns3::Ipv4RawSocketImpl::SendTo().

+ Here is the caller graph for this function:

◆ IsManualIpv6HopLimit()

bool ns3::Socket::IsManualIpv6HopLimit ( void  ) const
protected

Checks if the socket has a specific IPv6 Hop Limit set.

Returns
true if the socket has a IPv6 Hop Limit set, false otherwise.

Definition at line 383 of file socket.cc.

References m_manualIpv6HopLimit.

Referenced by ns3::TcpSocketBase::AddSocketTags(), ns3::UdpSocketImpl::DoSendTo(), ns3::TcpSocketCongestedRouter::SendDataPacket(), TcpDctcpCongestedRouter::SendDataPacket(), ns3::TcpSocketSmallAcks::SendEmptyPacket(), and ns3::Ipv6RawSocketImpl::SendTo().

+ Here is the caller graph for this function:

◆ IsManualIpv6Tclass()

bool ns3::Socket::IsManualIpv6Tclass ( void  ) const
protected

Checks if the socket has a specific IPv6 Tclass set.

Returns
true if the socket has a IPv6 Tclass set, false otherwise.

Definition at line 371 of file socket.cc.

References m_manualIpv6Tclass.

Referenced by ns3::TcpSocketBase::AddSocketTags(), ns3::UdpSocketImpl::DoSendTo(), ns3::TcpSocketCongestedRouter::SendDataPacket(), TcpDctcpCongestedRouter::SendDataPacket(), ns3::TcpSocketSmallAcks::SendEmptyPacket(), and ns3::Ipv6RawSocketImpl::SendTo().

+ Here is the caller graph for this function:

◆ IsRecvPktInfo()

bool ns3::Socket::IsRecvPktInfo ( ) const

Get status indicating whether enable/disable packet information to socket.

Returns
True if packet information should be sent to socket

Definition at line 364 of file socket.cc.

References m_recvPktInfo, and NS_LOG_FUNCTION.

Referenced by ns3::Ipv4RawSocketImpl::ForwardUp(), ns3::Ipv6RawSocketImpl::ForwardUp(), ns3::UdpSocketImpl::ForwardUp(), and ns3::UdpSocketImpl::ForwardUp6().

+ Here is the caller graph for this function:

◆ Listen()

virtual int ns3::Socket::Listen ( void  )
pure virtual

Listen for incoming connections.

Returns
0 on success, -1 on error (in which case errno is set).

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by Bug772ChainTest::CreateDevices(), DualStackTestCase::DoRun(), Ipv4DynamicGlobalRoutingTestCase::DoRun(), ns3::PacketSink::StartApplication(), and ns3::ThreeGppHttpServer::StartApplication().

+ Here is the caller graph for this function:

◆ NotifyConnectionFailed()

void ns3::Socket::NotifyConnectionFailed ( void  )
protected

Notify through the callback (if set) that the connection has not been established due to an error.

Definition at line 227 of file socket.cc.

References m_connectionFailed, and NS_LOG_FUNCTION.

Referenced by ns3::UdpSocketImpl::Connect(), ns3::PacketSocket::Connect(), and ns3::TcpSocketBase::SendEmptyPacket().

+ Here is the caller graph for this function:

◆ NotifyConnectionRequest()

bool ns3::Socket::NotifyConnectionRequest ( const Address from)
protected

Notify through the callback (if set) that an incoming connection is being requested by a remote host.

This function returns true by default (i.e., accept all the incoming connections). The callback (if set) might restrict this behaviour by returning zero for a connection that should be refused.

Parameters
fromthe address the connection is incoming from
Returns
true if the connection must be accepted, false otherwise.

Definition at line 257 of file socket.cc.

References m_connectionRequest, and NS_LOG_FUNCTION.

Referenced by ns3::TcpSocketBase::ProcessListen().

+ Here is the caller graph for this function:

◆ NotifyConnectionSucceeded()

void ns3::Socket::NotifyConnectionSucceeded ( void  )
protected

Notify through the callback (if set) that the connection has been established.

Definition at line 217 of file socket.cc.

References m_connectionSucceeded, and NS_LOG_FUNCTION.

Referenced by ns3::UdpSocketImpl::Connect(), ns3::PacketSocket::Connect(), ns3::NscTcpSocketImpl::ConnectionSucceeded(), and ns3::TcpSocketBase::ConnectionSucceeded().

+ Here is the caller graph for this function:

◆ NotifyDataRecv()

void ns3::Socket::NotifyDataRecv ( void  )
protected

◆ NotifyDataSent()

void ns3::Socket::NotifyDataSent ( uint32_t  size)
protected

Notify through the callback (if set) that some data have been sent.

Parameters
sizenumber of sent bytes.

Definition at line 285 of file socket.cc.

References m_dataSent, and NS_LOG_FUNCTION.

Referenced by ns3::UdpSocketImpl::DoSendTo(), ns3::TcpSocketCongestedRouter::SendDataPacket(), TcpDctcpCongestedRouter::SendDataPacket(), ns3::TcpSocketBase::SendDataPacket(), ns3::NscTcpSocketImpl::SendPendingData(), ns3::Ipv4RawSocketImpl::SendTo(), ns3::Ipv6RawSocketImpl::SendTo(), and ns3::PacketSocket::SendTo().

+ Here is the caller graph for this function:

◆ NotifyErrorClose()

void ns3::Socket::NotifyErrorClose ( void  )
protected

Notify through the callback (if set) that the connection has been closed due to an error.

Definition at line 247 of file socket.cc.

References m_errorClose, and NS_LOG_FUNCTION.

Referenced by ns3::TcpSocketBase::LastAckTimeout(), ns3::TcpSocketBase::ReTxTimeout(), and ns3::TcpSocketBase::SendRST().

+ Here is the caller graph for this function:

◆ NotifyNewConnectionCreated()

void ns3::Socket::NotifyNewConnectionCreated ( Ptr< Socket socket,
const Address from 
)
protected

Notify through the callback (if set) that a new connection has been created.

Parameters
socketThe socket receiving the new connection.
fromThe address of the node initiating the connection.

Definition at line 275 of file socket.cc.

References m_newConnectionCreated, and NS_LOG_FUNCTION.

Referenced by ns3::NscTcpSocketImpl::CompleteFork(), and ns3::TcpSocketBase::ProcessSynRcvd().

+ Here is the caller graph for this function:

◆ NotifyNormalClose()

void ns3::Socket::NotifyNormalClose ( void  )
protected

Notify through the callback (if set) that the connection has been closed.

Definition at line 237 of file socket.cc.

References m_normalClose, and NS_LOG_FUNCTION.

Referenced by ns3::TcpSocketBase::CloseAndNotify(), ns3::TcpSocketBase::DoPeerClose(), and ns3::TcpSocketBase::TimeWait().

+ Here is the caller graph for this function:

◆ NotifySend()

void ns3::Socket::NotifySend ( uint32_t  spaceAvailable)
protected

Notify through the callback (if set) that some data have been sent.

Parameters
spaceAvailablethe number of bytes available in the transmission buffer.

Definition at line 295 of file socket.cc.

References m_sendCb, and NS_LOG_FUNCTION.

Referenced by ns3::TcpSocketBase::ConnectionSucceeded(), ns3::UdpSocketImpl::DoSendTo(), ns3::TcpSocketBase::NewAck(), ns3::NscTcpSocketImpl::NSCWakeup(), ns3::TcpSocketBase::ProcessSynRcvd(), ns3::TcpSocketBase::SendPendingData(), ns3::Ipv4RawSocketImpl::SendTo(), ns3::Ipv6RawSocketImpl::SendTo(), and ns3::PacketSocket::SendTo().

+ Here is the caller graph for this function:

◆ Recv() [1/3]

virtual Ptr<Packet> ns3::Socket::Recv ( uint32_t  maxSize,
uint32_t  flags 
)
pure virtual

Read data from the socket.

This function matches closely in semantics to the recv() function call in the standard C library (libc): ssize_t recv (int s, void *buf, size_t len, int flags); except that the receive I/O is asynchronous. This is the primary Recv method at this low-level API and must be implemented by subclasses.

This method is normally used only on a connected socket. In a typical blocking sockets model, this call would block until at least one byte is returned or the connection closes. In ns-3 at this API, the call returns immediately in such a case and returns 0 if nothing is available to be read. However, an application can set a callback, ns3::SetRecvCallback, to be notified of data being available to be read (when it conceptually unblocks); this is an asynchronous I/O model for recv().

This variant of Recv() uses class ns3::Packet to encapsulate data, rather than providing a raw pointer and length field. This allows an ns-3 application to attach tags if desired (such as a flow ID) and may allow the simulator to avoid some data copies. Despite the appearance of receiving Packets on a stream socket, just think of it as a fancy byte buffer with streaming semantics.

The semantics depend on the type of socket. For a datagram socket, each Recv() returns the data from at most one Send(), and order is not necessarily preserved. For a stream socket, the bytes are delivered in order, and on-the-wire packet boundaries are not preserved.

The flags argument is formed by or'ing one or more of the values: MSG_OOB process out-of-band data MSG_PEEK peek at incoming message None of these flags are supported for now.

Some variants of Recv() are supported as additional API, including RecvFrom(), overloaded Recv() without arguments, and variants that use raw character buffers.

Parameters
maxSizereader will accept packet up to maxSize
flagsSocket control flags
Returns
Ptr<Packet> of the next in-sequence packet. Returns 0 if the socket cannot return a next in-sequence packet conforming to the maxSize and flags.
See also
SetRecvCallback

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by Tunnel::N0SocketRecv(), Tunnel::N1SocketRecv(), Tunnel::N3SocketRecv(), PrintReceivedPacket(), ReceivePacket(), NetAnimExperiment::ReceivePacket(), Experiment::ReceivePacket(), DsdvManetExample::ReceivePacket(), ns3::aodv::LoopbackTestCase::ReceivePkt(), Ipv4StaticRoutingSlash32TestCase::ReceivePkt(), UdpSocketLoopbackTest::ReceivePkt(), Ipv6ForwardingTest::ReceivePkt(), Ipv6RipngTest::ReceivePkt(), Ipv4ForwardingTest::ReceivePkt(), Ipv4RipTest::ReceivePkt(), SixlowpanHc1ImplTest::ReceivePkt(), SixlowpanIphcImplTest::ReceivePkt(), Ipv4HeaderTest::ReceivePkt(), Ipv6RawSocketImplTest::ReceivePkt(), Ipv4RawSocketImplTest::ReceivePkt(), Udp6SocketLoopbackTest::ReceivePkt(), Ipv4DeduplicationTest::ReceivePkt(), UdpSocketImplTest::ReceivePkt(), Ipv6RipngCountToInfinityTest::ReceivePkt(), Ipv4RipCountToInfinityTest::ReceivePkt(), Udp6SocketImplTest::ReceivePkt(), Ipv4GlobalRoutingSlash32TestCase::ReceivePkt(), Ipv6RawSocketImplTest::ReceivePkt2(), Ipv4RawSocketImplTest::ReceivePkt2(), UdpSocketImplTest::ReceivePkt2(), Udp6SocketImplTest::ReceivePkt2(), ns3::olsr::HelloRegressionTest::ReceivePktProbeA(), ns3::olsr::TcRegressionTest::ReceivePktProbeA(), ns3::olsr::HelloRegressionTest::ReceivePktProbeB(), ns3::olsr::TcRegressionTest::ReceivePktProbeB(), ns3::olsr::TcRegressionTest::ReceivePktProbeC(), ns3::EpcEnbApplication::RecvFromLteSocket(), ns3::EpcSgwApplication::RecvFromS11Socket(), ns3::EpcMmeApplication::RecvFromS11Socket(), ns3::EpcSgwApplication::RecvFromS1uSocket(), ns3::EpcEnbApplication::RecvFromS1uSocket(), ns3::EpcPgwApplication::RecvFromS5cSocket(), ns3::EpcSgwApplication::RecvFromS5cSocket(), ns3::EpcPgwApplication::RecvFromS5uSocket(), ns3::EpcSgwApplication::RecvFromS5uSocket(), ns3::EpcX2::RecvFromX2cSocket(), ns3::EpcX2::RecvFromX2uSocket(), Ipv4PacketInfoTagTest::RxCb(), Ipv6PacketInfoTagTest::RxCb(), TcpTestCase::ServerHandleRecv(), SocketPrinter(), and TcpTestCase::SourceHandleRecv().

◆ Recv() [2/3]

Ptr< Packet > ns3::Socket::Recv ( void  )

Read a single packet from the socket.

Overloaded version of Recv(maxSize, flags) with maxSize implicitly set to maximum sized integer, and flags set to zero.

Returns
Ptr<Packet> of the next in-sequence packet. Returns 0 if the socket cannot return a next in-sequence packet.

Definition at line 175 of file socket.cc.

References max, and NS_LOG_FUNCTION.

Referenced by Recv(), ns3::NscTcpSocketImpl::RecvFrom(), and ns3::TcpSocketBase::RecvFrom().

+ Here is the caller graph for this function:

◆ Recv() [3/3]

int ns3::Socket::Recv ( uint8_t *  buf,
uint32_t  size,
uint32_t  flags 
)

Recv data (or dummy data) from the remote host.

This method is provided so as to have an API which is closer in appearance to that of real network or BSD sockets.

If the underlying packet was carring null (fake) data, this buffer will be zeroed up to the length specified by the return value.

Parameters
bufA pointer to a raw byte buffer to write the data to.
sizeNumber of bytes (at most) to copy to buf
flagsany flags to pass to the socket
Returns
number of bytes copied into buf

Definition at line 182 of file socket.cc.

References ns3::Packet::CopyData(), ns3::Packet::GetSize(), NS_LOG_FUNCTION, and Recv().

+ Here is the call graph for this function:

◆ RecvFrom() [1/3]

virtual Ptr<Packet> ns3::Socket::RecvFrom ( uint32_t  maxSize,
uint32_t  flags,
Address fromAddress 
)
pure virtual

Read a single packet from the socket and retrieve the sender address.

Calls Recv(maxSize, flags) with maxSize implicitly set to maximum sized integer, and flags set to zero.

This method has similar semantics to Recv () but subclasses may want to provide checks on socket state, so the implementation is pushed to subclasses.

Parameters
maxSizereader will accept packet up to maxSize
flagsSocket control flags
fromAddressoutput parameter that will return the address of the sender of the received packet, if any. Remains untouched if no packet is received.
Returns
Ptr<Packet> of the next in-sequence packet. Returns 0 if the socket cannot return a next in-sequence packet.

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by dstSocketRecv(), ns3::aodv::LoopbackTestCase::EchoData(), ns3::UdpEchoServer::HandleRead(), ns3::PacketSocketServer::HandleRead(), ns3::UdpServer::HandleRead(), ns3::Ping6::HandleRead(), ns3::PacketSink::HandleRead(), ns3::Radvd::HandleRead(), ns3::UdpEchoClient::HandleRead(), Ipv4DynamicGlobalRoutingTestCase::HandleRead(), SixlowpanFragmentationTest::HandleReadClient(), HwmpProactiveRegressionTest::HandleReadClient(), FlameRegressionTest::HandleReadClient(), HwmpSimplestRegressionTest::HandleReadClient(), HwmpReactiveRegressionTest::HandleReadClient(), Ipv4FragmentationTest::HandleReadClient(), HwmpDoRfRegressionTest::HandleReadClient(), Ipv6FragmentationTest::HandleReadClient(), SixlowpanFragmentationTest::HandleReadServer(), HwmpProactiveRegressionTest::HandleReadServer(), FlameRegressionTest::HandleReadServer(), HwmpSimplestRegressionTest::HandleReadServer(), HwmpReactiveRegressionTest::HandleReadServer(), Ipv4FragmentationTest::HandleReadServer(), HwmpDoRfRegressionTest::HandleReadServer(), Ipv6FragmentationTest::HandleReadServer(), ns3::DhcpServer::NetHandler(), ns3::DhcpClient::NetHandler(), UanExperiment::PrintReceivedPacket(), ns3::olsr::Bug780Test::Receive(), ns3::V4TraceRoute::Receive(), ns3::V4Ping::Receive(), Receiver::Receive(), ns3::Rip::Receive(), ns3::RipNg::Receive(), ns3::ThreeGppHttpServer::ReceivedDataCallback(), ns3::ThreeGppHttpClient::ReceivedDataCallback(), ReceivePacket(), RoutingExperiment::ReceivePacket(), ns3::TcpGeneralTest::ReceivePacket(), IcmpEchoReplyTestCase::ReceivePkt(), IcmpTimeExceedTestCase::ReceivePkt(), IcmpV6EchoReplyTestCase::ReceivePkt(), IcmpV6TimeExceedTestCase::ReceivePkt(), Ipv6RawSocketImplTest::ReceivePkt2(), Ipv6RipngSplitHorizonStrategyTest::ReceivePktProbe(), Ipv4RipSplitHorizonStrategyTest::ReceivePktProbe(), RoutingHelper::ReceiveRoutingPacket(), ns3::BsmApplication::ReceiveWavePacket(), ns3::aodv::RoutingProtocol::RecvAodv(), ns3::dsdv::RoutingProtocol::RecvDsdv(), RecvFrom(), ns3::olsr::RoutingProtocol::RecvOlsr(), and srcSocketRecv().

◆ RecvFrom() [2/3]

Ptr< Packet > ns3::Socket::RecvFrom ( Address fromAddress)

Read a single packet from the socket and retrieve the sender address.

Calls RecvFrom (maxSize, flags, fromAddress) with maxSize implicitly set to maximum sized integer, and flags set to zero.

Parameters
fromAddressoutput parameter that will return the address of the sender of the received packet, if any. Remains untouched if no packet is received.
Returns
Ptr<Packet> of the next in-sequence packet. Returns 0 if the socket cannot return a next in-sequence packet.

Definition at line 195 of file socket.cc.

References max, NS_LOG_FUNCTION, and RecvFrom().

+ Here is the call graph for this function:

◆ RecvFrom() [3/3]

int ns3::Socket::RecvFrom ( uint8_t *  buf,
uint32_t  size,
uint32_t  flags,
Address fromAddress 
)

Read a single packet from the socket and retrieve the sender address.

This method is provided so as to have an API which is closer in appearance to that of real network or BSD sockets.

Parameters
bufA pointer to a raw byte buffer to write the data to. If the underlying packet was carring null (fake) data, this buffer will be zeroed up to the length specified by the return value.
sizeNumber of bytes (at most) to copy to buf
flagsany flags to pass to the socket
fromAddressoutput parameter that will return the address of the sender of the received packet, if any. Remains untouched if no packet is received.
Returns
number of bytes copied into buf

Definition at line 202 of file socket.cc.

References ns3::Packet::CopyData(), ns3::Packet::GetSize(), NS_LOG_FUNCTION, and RecvFrom().

+ Here is the call graph for this function:

◆ Send() [1/3]

virtual int ns3::Socket::Send ( Ptr< Packet p,
uint32_t  flags 
)
pure virtual

Send data (or dummy data) to the remote host.

This function matches closely in semantics to the send() function call in the standard C library (libc): ssize_t send (int s, const void *msg, size_t len, int flags); except that the send I/O is asynchronous. This is the primary Send method at this low-level API and must be implemented by subclasses.

In a typical blocking sockets model, this call would block upon lack of space to hold the message to be sent. In ns-3 at this API, the call returns immediately in such a case, but the callback registered with SetSendCallback() is invoked when the socket has space (when it conceptually unblocks); this is an asynchronous I/O model for send().

This variant of Send() uses class ns3::Packet to encapsulate data, rather than providing a raw pointer and length field. This allows an ns-3 application to attach tags if desired (such as a flow ID) and may allow the simulator to avoid some data copies. Despite the appearance of sending Packets on a stream socket, just think of it as a fancy byte buffer with streaming semantics.

If either the message buffer within the Packet is too long to pass atomically through the underlying protocol (for datagram sockets), or the message buffer cannot entirely fit in the transmit buffer (for stream sockets), -1 is returned and SocketErrno is set to ERROR_MSGSIZE. If the packet does not fit, the caller can split the Packet (based on information obtained from GetTxAvailable) and reattempt to send the data.

The flags argument is formed by or'ing one or more of the values: MSG_OOB process out-of-band data MSG_DONTROUTE bypass routing, use direct interface These flags are unsupported as of ns-3.1.

Parameters
pns3::Packet to send
flagsSocket control flags
Returns
the number of bytes accepted for transmission if no error occurs, and -1 otherwise.
See also
SetSendCallback

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by UdpSocketImplTest::DoSendData(), Experiment::GenerateTraffic(), GenerateTraffic(), ns3::BsmApplication::GenerateWaveTraffic(), TcpEndPointBug2211Test::HandleConnect(), ns3::ThreeGppHttpClient::RequestEmbeddedObject(), ns3::ThreeGppHttpClient::RequestMainObject(), ns3::UdpClient::Send(), ns3::V4Ping::Send(), ns3::PacketSocketClient::Send(), EpsBearerTagUdpClient::Send(), ns3::UdpEchoClient::Send(), Send(), SixlowpanFragmentationTest::SendClient(), Ipv4FragmentationTest::SendClient(), Ipv6FragmentationTest::SendClient(), Bug772ChainTest::SendData(), HwmpProactiveRegressionTest::SendData(), FlameRegressionTest::SendData(), HwmpSimplestRegressionTest::SendData(), HwmpReactiveRegressionTest::SendData(), ns3::BulkSendApplication::SendData(), HwmpDoRfRegressionTest::SendDataA(), HwmpDoRfRegressionTest::SendDataB(), HwmpDoRfRegressionTest::SendDataC(), SendPacket(), MyApp::SendPacket(), SimpleSource::SendPacket(), ns3::UdpTraceClient::SendPacket(), ns3::OnOffApplication::SendPacket(), ns3::TcpGeneralTest::SendPacket(), ns3::dsdv::RoutingProtocol::SendPeriodicUpdate(), ns3::olsr::Bug780Test::SendPing(), ChainRegressionTest::SendPing(), ns3::EpcEnbApplication::SendToLteSocket(), ns3::ThreeGppHttpServer::ServeFromTxBuffer(), TcpTestCase::ServerHandleSend(), TcpTestCase::SourceHandleSend(), ns3::SocketWriter::Write(), WriteUntilBufferFull(), Ns3TcpStateTestCase::WriteUntilBufferFull(), and Ns3TcpLossTestCase::WriteUntilBufferFull().

+ Here is the caller graph for this function:

◆ Send() [2/3]

int ns3::Socket::Send ( Ptr< Packet p)

Send data (or dummy data) to the remote host.

Overloaded version of Send(..., flags) with flags set to zero.

Parameters
pns3::Packet to send
Returns
the number of bytes accepted for transmission if no error occurs, and -1 otherwise.

Definition at line 135 of file socket.cc.

References NS_LOG_FUNCTION, and Send().

+ Here is the call graph for this function:

◆ Send() [3/3]

int ns3::Socket::Send ( const uint8_t *  buf,
uint32_t  size,
uint32_t  flags 
)

Send data (or dummy data) to the remote host.

This method is provided so as to have an API which is closer in appearance to that of real network or BSD sockets.

Parameters
bufA pointer to a raw byte buffer of some data to send. If this buffer is 0, we send dummy data whose size is specified by the second parameter
sizethe number of bytes to copy from the buffer
flagsSocket control flags
Returns
the number of bytes accepted for transmission if no error occurs, and -1 otherwise.

Definition at line 142 of file socket.cc.

References NS_LOG_FUNCTION, and Send().

+ Here is the call graph for this function:

◆ SendTo() [1/2]

virtual int ns3::Socket::SendTo ( Ptr< Packet p,
uint32_t  flags,
const Address toAddress 
)
pure virtual

Send data to a specified peer.

This method has similar semantics to Send () but subclasses may want to provide checks on socket state, so the implementation is pushed to subclasses.

Parameters
ppacket to send
flagsSocket control flags
toAddressIP Address of remote host
Returns
-1 in case of error or the number of bytes copied in the internal buffer and accepted for transmission.

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by ns3::DhcpClient::Boot(), ns3::EpcMmeApplication::DoErabReleaseIndication(), ns3::EpcMmeApplication::DoInitialUeMessage(), ns3::EpcMmeApplication::DoPathSwitchRequest(), ns3::EpcSgwApplication::DoRecvCreateSessionRequest(), ns3::EpcPgwApplication::DoRecvCreateSessionRequest(), ns3::EpcSgwApplication::DoRecvCreateSessionResponse(), ns3::EpcSgwApplication::DoRecvDeleteBearerCommand(), ns3::EpcPgwApplication::DoRecvDeleteBearerCommand(), ns3::EpcMmeApplication::DoRecvDeleteBearerRequest(), ns3::EpcSgwApplication::DoRecvDeleteBearerRequest(), ns3::EpcSgwApplication::DoRecvDeleteBearerResponse(), ns3::EpcSgwApplication::DoRecvModifyBearerRequest(), ns3::EpcPgwApplication::DoRecvModifyBearerRequest(), ns3::EpcSgwApplication::DoRecvModifyBearerResponse(), UdpSocketLoopbackTest::DoRun(), Udp6SocketLoopbackTest::DoRun(), SixlowpanHc1ImplTest::DoSendData(), Ipv4StaticRoutingSlash32TestCase::DoSendData(), Ipv6ForwardingTest::DoSendData(), SixlowpanIphcImplTest::DoSendData(), Ipv6RipngTest::DoSendData(), Ipv4RipTest::DoSendData(), Ipv4ForwardingTest::DoSendData(), Ipv4RawSocketImplTest::DoSendData(), Ipv6RawSocketImplTest::DoSendData(), Ipv4PacketInfoTagTest::DoSendData(), Ipv6PacketInfoTagTest::DoSendData(), IcmpEchoReplyTestCase::DoSendData(), IcmpTimeExceedTestCase::DoSendData(), Ipv4RipCountToInfinityTest::DoSendData(), Ipv6RipngCountToInfinityTest::DoSendData(), IcmpV6EchoReplyTestCase::DoSendData(), IcmpV6TimeExceedTestCase::DoSendData(), Ipv4DeduplicationPerformanceTest::DoSendData(), Ipv4GlobalRoutingSlash32TestCase::DoSendData(), Ipv4RawSocketImplTest::DoSendData_IpHdr(), Ipv4HeaderTest::DoSendData_IpHdr_Dscp(), UdpSocketImplTest::DoSendDataTo(), Udp6SocketImplTest::DoSendDataTo(), ns3::EpcX2::DoSendHandoverRequest(), ns3::EpcX2::DoSendLoadInformation(), Ipv4DeduplicationTest::DoSendPacket(), ns3::EpcX2::DoSendResourceStatusUpdate(), ns3::EpcX2::DoSendUeData(), ns3::aodv::LoopbackTestCase::EchoData(), ns3::UdpEchoServer::HandleRead(), HwmpProactiveRegressionTest::HandleReadServer(), FlameRegressionTest::HandleReadServer(), HwmpSimplestRegressionTest::HandleReadServer(), HwmpReactiveRegressionTest::HandleReadServer(), HwmpDoRfRegressionTest::HandleReadServer(), ns3::Rip::HandleRequests(), ns3::RipNg::HandleRequests(), Tunnel::N0VirtualSend(), Tunnel::N1VirtualSend(), Tunnel::N3VirtualSend(), ns3::aodv::RoutingProtocol::RecvReply(), ns3::DhcpClient::Request(), ns3::V4TraceRoute::Send(), ns3::Ping6::Send(), ns3::DhcpServer::SendAck(), Ipv4FragmentationTest::SendClient(), ns3::aodv::LoopbackTestCase::SendData(), ns3::DhcpServer::SendOffer(), ns3::dsdv::RoutingProtocol::SendPeriodicUpdate(), ns3::aodv::RoutingProtocol::SendReply(), ns3::aodv::RoutingProtocol::SendReplyAck(), ns3::aodv::RoutingProtocol::SendReplyByIntermediateNode(), ns3::aodv::RoutingProtocol::SendRerrWhenNoRouteToForward(), SendStuff(), ns3::aodv::RoutingProtocol::SendTo(), SendTo(), ns3::EpcSgwApplication::SendToS1uSocket(), ns3::EpcEnbApplication::SendToS1uSocket(), ns3::EpcPgwApplication::SendToS5uSocket(), ns3::EpcSgwApplication::SendToS5uSocket(), and ns3::dsdv::RoutingProtocol::SendTriggeredUpdate().

◆ SendTo() [2/2]

int ns3::Socket::SendTo ( const uint8_t *  buf,
uint32_t  size,
uint32_t  flags,
const Address address 
)

Send data to a specified peer.

This method is provided so as to have an API which is closer in appearance to that of real network or BSD sockets.

Parameters
bufA pointer to a raw byte buffer of some data to send. If this is 0, we send dummy data whose size is specified by the third parameter
sizethe number of bytes to copy from the buffer
flagsSocket control flags
addressIP Address of remote host
Returns
-1 in case of error or the number of bytes copied in the internal buffer and accepted for transmission.

Definition at line 158 of file socket.cc.

References NS_LOG_FUNCTION, and SendTo().

+ Here is the call graph for this function:

◆ SetAcceptCallback()

void ns3::Socket::SetAcceptCallback ( Callback< bool, Ptr< Socket >, const Address &>  connectionRequest,
Callback< void, Ptr< Socket >, const Address &>  newConnectionCreated 
)

Accept connection requests from remote hosts.

Parameters
connectionRequestCallback for connection request from peer. This user callback is passed a pointer to this socket, the ip address and the port number of the connection originator. This callback must return true to accept the incoming connection, false otherwise. If the connection is accepted, the "newConnectionCreated" callback will be invoked later to give access to the user to the socket created to match this new connection. If the user does not explicitly specify this callback, all incoming connections will be refused.
newConnectionCreatedCallback for new connection: when a new is accepted, it is created and the corresponding socket is passed back to the user through this callback. This user callback is passed a pointer to the new socket, and the ip address and port number of the connection originator.

Definition at line 104 of file socket.cc.

References m_connectionRequest, m_newConnectionCreated, and NS_LOG_FUNCTION.

Referenced by DualStackTestCase::DoRun(), ns3::PacketSink::StartApplication(), ns3::ThreeGppHttpServer::StartApplication(), and ns3::ThreeGppHttpServer::StopApplication().

+ Here is the caller graph for this function:

◆ SetAllowBroadcast()

virtual bool ns3::Socket::SetAllowBroadcast ( bool  allowBroadcast)
pure virtual

Configure whether broadcast datagram transmissions are allowed.

This method corresponds to using setsockopt() SO_BROADCAST of real network or BSD sockets. If set on a socket, this option will enable or disable packets to be transmitted to broadcast destination addresses.

Parameters
allowBroadcastWhether broadcast is allowed
Returns
true if operation succeeds

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by Bug772ChainTest::CreateDevices(), ns3::olsr::RoutingProtocol::DoInitialize(), SixlowpanHc1ImplTest::DoRun(), Ipv6ForwardingTest::DoRun(), Ipv6RipngTest::DoRun(), Ipv4RipTest::DoRun(), Ipv4ForwardingTest::DoRun(), Ipv4StaticRoutingSlash32TestCase::DoRun(), SixlowpanIphcImplTest::DoRun(), UdpSocketImplTest::DoRun(), Ipv4RipCountToInfinityTest::DoRun(), Ipv6RipngCountToInfinityTest::DoRun(), Udp6SocketImplTest::DoRun(), Ipv4GlobalRoutingSlash32TestCase::DoRun(), ns3::aodv::RoutingProtocol::NotifyAddAddress(), ns3::dsdv::RoutingProtocol::NotifyAddAddress(), ns3::aodv::RoutingProtocol::NotifyInterfaceUp(), ns3::dsdv::RoutingProtocol::NotifyInterfaceUp(), ns3::aodv::RoutingProtocol::NotifyRemoveAddress(), ns3::dsdv::RoutingProtocol::NotifyRemoveAddress(), ns3::UdpClient::StartApplication(), ns3::DhcpServer::StartApplication(), ns3::BsmApplication::StartApplication(), ns3::DhcpClient::StartApplication(), ns3::UdpTraceClient::StartApplication(), ns3::OnOffApplication::StartApplication(), ns3::UdpEchoClient::StartApplication(), and Ipv4FragmentationTest::StartClient().

+ Here is the caller graph for this function:

◆ SetCloseCallbacks()

void ns3::Socket::SetCloseCallbacks ( Callback< void, Ptr< Socket > >  normalClose,
Callback< void, Ptr< Socket > >  errorClose 
)

Detect socket recv() events such as graceful shutdown or error.

For connection-oriented sockets, the first callback is used to signal that the remote side has gracefully shut down the connection, and the second callback denotes an error corresponding to cases in which a traditional recv() socket call might return -1 (error), such as a connection reset. For datagram sockets, these callbacks may never be invoked.

Parameters
normalClosethis callback is invoked when the peer closes the connection gracefully
errorClosethis callback is invoked when the connection closes abnormally

Definition at line 94 of file socket.cc.

References m_errorClose, m_normalClose, and NS_LOG_FUNCTION.

Referenced by ns3::TcpGeneralTest::HandleAccept(), ns3::ThreeGppHttpServer::NewConnectionCreatedCallback(), ns3::ThreeGppHttpClient::NormalCloseCallback(), ns3::ThreeGppHttpClient::OpenConnection(), ns3::PacketSink::StartApplication(), ns3::ThreeGppHttpServer::StartApplication(), and ns3::ThreeGppHttpServer::StopApplication().

+ Here is the caller graph for this function:

◆ SetConnectCallback()

void ns3::Socket::SetConnectCallback ( Callback< void, Ptr< Socket > >  connectionSucceeded,
Callback< void, Ptr< Socket > >  connectionFailed 
)

Specify callbacks to allow the caller to determine if the connection succeeds of fails.

Parameters
connectionSucceededthis callback is invoked when the connection request initiated by the user is successfully completed. The callback is passed back a pointer to the same socket object.
connectionFailedthis callback is invoked when the connection request initiated by the user is unsuccessfully completed. The callback is passed back a pointer to the same socket object.

Definition at line 84 of file socket.cc.

References m_connectionFailed, m_connectionSucceeded, and NS_LOG_FUNCTION.

Referenced by TcpSynConnectionFailedTest::DoRun(), TcpEndPointBug2211Test::DoRun(), ns3::ThreeGppHttpClient::OpenConnection(), ns3::BulkSendApplication::StartApplication(), ns3::OnOffApplication::StartApplication(), ns3::ThreeGppHttpClient::StopApplication(), and ns3::TcpSocketBase::TcpSocketBase().

+ Here is the caller graph for this function:

◆ SetDataSentCallback()

void ns3::Socket::SetDataSentCallback ( Callback< void, Ptr< Socket >, uint32_t >  dataSent)

Notify application when a packet has been sent from transport protocol (non-standard socket call)

Parameters
dataSentCallback for the event that data is sent from the underlying transport protocol. This callback is passed a pointer to the socket, and the number of bytes sent.

Definition at line 114 of file socket.cc.

References m_dataSent, and NS_LOG_FUNCTION.

Referenced by ns3::TcpSocketBase::TcpSocketBase().

+ Here is the caller graph for this function:

◆ SetIpRecvTos()

void ns3::Socket::SetIpRecvTos ( bool  ipv4RecvTos)

Tells a socket to pass information about IP Type of Service up the stack.

This method corresponds to using setsockopt () IP_RECVTOS of real network or BSD sockets. In our implementation, the socket simply adds a SocketIpTosTag tag to the packet before passing the packet up the stack.

Parameters
ipv4RecvTosWhether the socket should add SocketIpv4TosTag tag to the packet

Definition at line 459 of file socket.cc.

References m_ipRecvTos.

◆ SetIpRecvTtl()

void ns3::Socket::SetIpRecvTtl ( bool  ipv4RecvTtl)

Tells a socket to pass information about IP_TTL up the stack.

This method corresponds to using setsockopt () IP_RECVTTL of real network or BSD sockets. In our implementation, the socket simply adds a SocketIpTtlTag tag to the packet before passing the packet up the stack.

Parameters
ipv4RecvTtlWhether the socket should add SocketIpv4TtlTag tag to the packet

Definition at line 526 of file socket.cc.

References m_ipRecvTtl.

Referenced by ns3::Rip::DoInitialize(), ns3::aodv::RoutingProtocol::NotifyAddAddress(), ns3::aodv::RoutingProtocol::NotifyInterfaceUp(), ns3::Rip::NotifyInterfaceUp(), and ns3::aodv::RoutingProtocol::NotifyRemoveAddress().

+ Here is the caller graph for this function:

◆ SetIpTos()

void ns3::Socket::SetIpTos ( uint8_t  ipTos)

Manually set IP Type of Service field.

This method corresponds to using setsockopt () IP_TOS of real network or BSD sockets. This option is for IPv4 only. Setting the IP TOS also changes the socket priority as stated in the man page.

Parameters
ipTosThe desired TOS value for IP headers

Definition at line 437 of file socket.cc.

References first::address, GetSocketType(), GetSockName(), IpTos2Priority(), m_ipTos, m_priority, and NS3_SOCK_STREAM.

Referenced by ns3::UdpSocketImpl::Bind(), ns3::TcpSocketBase::Bind(), ns3::Ipv4RawSocketImpl::Connect(), ns3::UdpSocketImpl::Connect(), and ns3::TcpSocketBase::Connect().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ SetIpTtl()

void ns3::Socket::SetIpTtl ( uint8_t  ipTtl)
virtual

Manually set IP Time to Live field.

This method corresponds to using setsockopt () IP_TTL of real network or BSD sockets.

Parameters
ipTtlThe desired TTL value for IP headers

Definition at line 513 of file socket.cc.

References m_ipTtl, and m_manualIpTtl.

Referenced by ns3::olsr::RoutingProtocol::DoInitialize(), IcmpEchoReplyTestCase::DoRun(), IcmpTimeExceedTestCase::DoRun(), IcmpV6EchoReplyTestCase::DoRun(), ns3::UdpSocket::GetTypeId(), and ns3::V4TraceRoute::Send().

+ Here is the caller graph for this function:

◆ SetIpv6HopLimit()

void ns3::Socket::SetIpv6HopLimit ( uint8_t  ipHopLimit)
virtual

Manually set IPv6 Hop Limit.

This method corresponds to using setsockopt () IPV6_HOPLIMIT of real network or BSD sockets.

Parameters
ipHopLimitThe desired Hop Limit value for IPv6 headers

Definition at line 538 of file socket.cc.

References m_ipv6HopLimit, and m_manualIpv6HopLimit.

Referenced by IcmpV6TimeExceedTestCase::DoRun().

+ Here is the caller graph for this function:

◆ SetIpv6RecvHopLimit()

void ns3::Socket::SetIpv6RecvHopLimit ( bool  ipv6RecvHopLimit)

Tells a socket to pass information about IPv6 Hop Limit up the stack.

This method corresponds to using setsockopt () IPV6_RECVHOPLIMIT of real network or BSD sockets. In our implementation, the socket simply adds a SocketIpv6HopLimitTag tag to the packet before passing the packet up the stack.

Parameters
ipv6RecvHopLimitWhether the socket should add SocketIpv6HopLimitTag tag to the packet

Definition at line 551 of file socket.cc.

References m_ipv6RecvHopLimit.

Referenced by ns3::RipNg::DoInitialize(), and ns3::RipNg::NotifyInterfaceUp().

+ Here is the caller graph for this function:

◆ SetIpv6RecvTclass()

void ns3::Socket::SetIpv6RecvTclass ( bool  ipv6RecvTclass)

Tells a socket to pass information about IPv6 Traffic Class up the stack.

This method corresponds to using setsockopt () IPV6_RECVTCLASS of real network or BSD sockets. In our implementation, the socket simply adds a SocketIpv6TclasssTag tag to the packet before passing the packet up the stack.

Parameters
ipv6RecvTclassWhether the socket should add SocketIpv6TclassTag tag to the packet

Definition at line 501 of file socket.cc.

References m_ipv6RecvTclass.

◆ SetIpv6Tclass()

void ns3::Socket::SetIpv6Tclass ( int  ipTclass)

Manually set IPv6 Traffic Class field.

This method corresponds to using setsockopt () IPV6_TCLASS of real network or BSD sockets. This option is for IPv6 only. Setting the IPV6_TCLASSS to -1 clears the option and let the socket uses the default value.

Parameters
ipTclassThe desired TCLASS value for IPv6 headers

Definition at line 471 of file socket.cc.

References first::address, GetSockName(), m_ipv6Tclass, m_manualIpv6Tclass, and NS_LOG_WARN.

+ Here is the call graph for this function:

◆ SetPriority()

void ns3::Socket::SetPriority ( uint8_t  priority)

Manually set the socket priority.

This method corresponds to using setsockopt () SO_PRIORITY of real network or BSD sockets. On Linux, the socket priority can be set to a value in the range [0..6], unless the user process has the CAP_NET_ADMIN capability (see the man page for socket). ns-3 allows users to set the socket priority to any 8-bit non-negative value, which is equivalent to assuming that the CAP_NET_ADMIN capability is set.

Parameters
priorityThe socket priority

Definition at line 389 of file socket.cc.

References m_priority, and NS_LOG_FUNCTION.

Referenced by ns3::PacketSocketClient::SetPriority(), and ns3::PacketSocketClient::StartApplication().

+ Here is the caller graph for this function:

◆ SetRecvCallback()

void ns3::Socket::SetRecvCallback ( Callback< void, Ptr< Socket > >  receivedData)

Notify application when new data is available to be read.

This callback is intended to notify a socket that would have been blocked in a blocking socket model that data is available to be read.

Definition at line 128 of file socket.cc.

References m_receivedData, and NS_LOG_FUNCTION.

Referenced by ns3::EpcSgwApplication::AddMme(), ns3::EpcEnbApplication::AddS1Interface(), ns3::EpcMmeApplication::AddSgw(), ns3::EpcX2::AddX2Interface(), ns3::ThreeGppHttpClient::ConnectionSucceededCallback(), Bug772ChainTest::CreateDevices(), ns3::olsr::Bug780Test::CreateNodes(), ns3::olsr::HelloRegressionTest::CreateNodes(), ns3::olsr::TcRegressionTest::CreateNodes(), ns3::EpcSgwApplication::DoDispose(), ns3::EpcPgwApplication::DoDispose(), ns3::olsr::RoutingProtocol::DoInitialize(), ns3::Rip::DoInitialize(), ns3::RipNg::DoInitialize(), ns3::aodv::LoopbackTestCase::DoRun(), Ipv6RawSocketImplTest::DoRun(), Ipv4RawSocketImplTest::DoRun(), IcmpEchoReplyTestCase::DoRun(), UdpSocketImplTest::DoRun(), IcmpTimeExceedTestCase::DoRun(), IcmpV6EchoReplyTestCase::DoRun(), Udp6SocketImplTest::DoRun(), IcmpV6TimeExceedTestCase::DoRun(), Ipv4DynamicGlobalRoutingTestCase::DoRun(), ns3::EpcEnbApplication::EpcEnbApplication(), ns3::EpcPgwApplication::EpcPgwApplication(), ns3::EpcSgwApplication::EpcSgwApplication(), TcpEndPointBug2211Test::HandleAccept(), ns3::PacketSink::HandleAccept(), ns3::TcpGeneralTest::HandleAccept(), HwmpProactiveRegressionTest::InstallApplications(), FlameRegressionTest::InstallApplications(), HwmpDoRfRegressionTest::InstallApplications(), HwmpSimplestRegressionTest::InstallApplications(), HwmpReactiveRegressionTest::InstallApplications(), ns3::DhcpClient::LinkStateHandler(), ns3::ThreeGppHttpServer::NewConnectionCreatedCallback(), ns3::aodv::RoutingProtocol::NotifyAddAddress(), ns3::dsdv::RoutingProtocol::NotifyAddAddress(), ns3::aodv::RoutingProtocol::NotifyInterfaceUp(), ns3::dsdv::RoutingProtocol::NotifyInterfaceUp(), ns3::Rip::NotifyInterfaceUp(), ns3::RipNg::NotifyInterfaceUp(), ns3::aodv::RoutingProtocol::NotifyRemoveAddress(), ns3::dsdv::RoutingProtocol::NotifyRemoveAddress(), ns3::ThreeGppHttpClient::OpenConnection(), PrintTraffic(), NetAnimExperiment::Run(), Experiment::Run(), TcpTestCase::ServerHandleConnectionCreated(), TcpTestCase::SetupDefaultSim(), TcpTestCase::SetupDefaultSim6(), ns3::UdpEchoServer::StartApplication(), ns3::V4TraceRoute::StartApplication(), ns3::PacketSocketServer::StartApplication(), ns3::UdpClient::StartApplication(), ns3::V4Ping::StartApplication(), ns3::PacketSocketClient::StartApplication(), Receiver::StartApplication(), ns3::UdpServer::StartApplication(), ns3::Ping6::StartApplication(), EpsBearerTagUdpClient::StartApplication(), ns3::DhcpServer::StartApplication(), ns3::BsmApplication::StartApplication(), ns3::DhcpClient::StartApplication(), ns3::PacketSink::StartApplication(), ns3::Radvd::StartApplication(), ns3::UdpTraceClient::StartApplication(), ns3::UdpEchoClient::StartApplication(), ns3::ThreeGppHttpServer::StartApplication(), SixlowpanFragmentationTest::StartClient(), Ipv4FragmentationTest::StartClient(), Ipv6FragmentationTest::StartClient(), SixlowpanFragmentationTest::StartServer(), Ipv4FragmentationTest::StartServer(), Ipv6FragmentationTest::StartServer(), ns3::UdpEchoServer::StopApplication(), ns3::PacketSocketServer::StopApplication(), Receiver::StopApplication(), ns3::UdpServer::StopApplication(), ns3::Ping6::StopApplication(), ns3::DhcpServer::StopApplication(), ns3::PacketSink::StopApplication(), ns3::DhcpClient::StopApplication(), ns3::Radvd::StopApplication(), ns3::UdpEchoClient::StopApplication(), ns3::ThreeGppHttpServer::StopApplication(), ns3::ThreeGppHttpClient::StopApplication(), ns3::TcpSocketBase::TcpSocketBase(), and Tunnel::Tunnel().

◆ SetRecvPktInfo()

void ns3::Socket::SetRecvPktInfo ( bool  flag)

Enable/Disable receive packet information to socket.

For IP_PKTINFO/IP6_PKTINFO. This method is only usable for Raw socket and Datagram Socket. Not supported for Stream socket.

Method doesn't make distinction between IPv4 and IPv6. If it is enabled, it is enabled for all types of sockets that supports packet information

Parameters
flagEnable/Disable receive information
Returns
nothing

Definition at line 358 of file socket.cc.

References m_recvPktInfo, and NS_LOG_FUNCTION.

Referenced by ns3::olsr::RoutingProtocol::DoInitialize(), ns3::Rip::DoInitialize(), ns3::RipNg::DoInitialize(), Ipv4DynamicGlobalRoutingTestCase::DoRun(), ns3::Rip::NotifyInterfaceUp(), ns3::RipNg::NotifyInterfaceUp(), ns3::DhcpServer::StartApplication(), and ns3::Radvd::StartApplication().

+ Here is the caller graph for this function:

◆ SetSendCallback()

void ns3::Socket::SetSendCallback ( Callback< void, Ptr< Socket >, uint32_t >  sendCb)

Notify application when space in transmit buffer is added.

This callback is intended to notify a socket that would have been blocked in a blocking socket model that space is available in the transmit buffer and that it can call Send() again.

Parameters
sendCbCallback for the event that the socket transmit buffer fill level has decreased. This callback is passed a pointer to the socket, and the number of bytes available for writing into the buffer (an absolute value). If there is no transmit buffer limit, a maximum-sized integer is always returned.

Definition at line 121 of file socket.cc.

References m_sendCb, and NS_LOG_FUNCTION.

Referenced by ns3::ThreeGppHttpServer::NewConnectionCreatedCallback(), TcpTestCase::ServerHandleConnectionCreated(), TcpTestCase::SetupDefaultSim(), TcpTestCase::SetupDefaultSim6(), ns3::BulkSendApplication::StartApplication(), ns3::ThreeGppHttpServer::StartApplication(), StartFlow(), Ns3TcpLossTestCase::StartFlow(), Ns3TcpStateTestCase::StartFlow(), ns3::ThreeGppHttpServer::StopApplication(), and ns3::TcpSocketBase::TcpSocketBase().

+ Here is the caller graph for this function:

◆ ShutdownRecv()

virtual int ns3::Socket::ShutdownRecv ( void  )
pure virtual
Returns
zero on success, -1 on failure.

Do not allow any further Recv calls. This method is typically implemented for Tcp sockets by a half close.

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by ns3::BulkSendApplication::StartApplication(), and ns3::OnOffApplication::StartApplication().

+ Here is the caller graph for this function:

◆ ShutdownSend()

virtual int ns3::Socket::ShutdownSend ( void  )
pure virtual
Returns
zero on success, -1 on failure.

Do not allow any further Send calls. This method is typically implemented for Tcp sockets by a half close.

Implemented in ns3::TcpSocketBase, ns3::PacketSocket, ns3::Ipv6RawSocketImpl, ns3::UdpSocketImpl, ns3::NscTcpSocketImpl, and ns3::Ipv4RawSocketImpl.

Referenced by Bug772ChainTest::CreateDevices(), ns3::olsr::RoutingProtocol::DoInitialize(), Ipv4DynamicGlobalRoutingTestCase::DoRun(), ns3::ThreeGppHttpServer::NormalCloseCallback(), ns3::PacketSink::StartApplication(), and ns3::Radvd::StartApplication().

+ Here is the caller graph for this function:

Member Data Documentation

◆ m_boundnetdevice

◆ m_connectionFailed

Callback<void, Ptr<Socket> > ns3::Socket::m_connectionFailed
private

connection failed callback

Definition at line 1082 of file socket.h.

Referenced by DoDispose(), NotifyConnectionFailed(), and SetConnectCallback().

◆ m_connectionRequest

Callback<bool, Ptr<Socket>, const Address &> ns3::Socket::m_connectionRequest
private

connection request callback

Definition at line 1085 of file socket.h.

Referenced by DoDispose(), NotifyConnectionRequest(), and SetAcceptCallback().

◆ m_connectionSucceeded

Callback<void, Ptr<Socket> > ns3::Socket::m_connectionSucceeded
private

connection succeeded callback

Definition at line 1081 of file socket.h.

Referenced by DoDispose(), NotifyConnectionSucceeded(), and SetConnectCallback().

◆ m_dataSent

Callback<void, Ptr<Socket>, uint32_t> ns3::Socket::m_dataSent
private

data sent callback

Definition at line 1087 of file socket.h.

Referenced by DoDispose(), NotifyDataSent(), and SetDataSentCallback().

◆ m_errorClose

Callback<void, Ptr<Socket> > ns3::Socket::m_errorClose
private

connection closed due to errors callback

Definition at line 1084 of file socket.h.

Referenced by DoDispose(), NotifyErrorClose(), and SetCloseCallbacks().

◆ m_ipRecvTos

bool ns3::Socket::m_ipRecvTos
private

socket forwards IPv4 TOS tag to L4

Definition at line 1095 of file socket.h.

Referenced by IsIpRecvTos(), and SetIpRecvTos().

◆ m_ipRecvTtl

bool ns3::Socket::m_ipRecvTtl
private

socket forwards IPv4 TTL tag to L4

Definition at line 1096 of file socket.h.

Referenced by IsIpRecvTtl(), and SetIpRecvTtl().

◆ m_ipTos

uint8_t ns3::Socket::m_ipTos
private

the socket IPv4 TOS

Definition at line 1098 of file socket.h.

Referenced by GetIpTos(), SetIpTos(), and Socket().

◆ m_ipTtl

uint8_t ns3::Socket::m_ipTtl
private

the socket IPv4 TTL

Definition at line 1099 of file socket.h.

Referenced by GetIpTtl(), SetIpTtl(), and Socket().

◆ m_ipv6HopLimit

uint8_t ns3::Socket::m_ipv6HopLimit
private

the socket IPv6 Hop Limit

Definition at line 1108 of file socket.h.

Referenced by GetIpv6HopLimit(), SetIpv6HopLimit(), and Socket().

◆ m_ipv6MulticastGroupAddress

Ipv6Address ns3::Socket::m_ipv6MulticastGroupAddress
protected

IPv6 multicast group address.

Definition at line 1078 of file socket.h.

Referenced by ns3::Ipv6RawSocketImpl::Ipv6JoinGroup(), ns3::UdpSocketImpl::Ipv6JoinGroup(), and Ipv6LeaveGroup().

◆ m_ipv6RecvHopLimit

bool ns3::Socket::m_ipv6RecvHopLimit
private

socket forwards IPv6 Hop Limit tag to L4

Definition at line 1105 of file socket.h.

Referenced by IsIpv6RecvHopLimit(), and SetIpv6RecvHopLimit().

◆ m_ipv6RecvTclass

bool ns3::Socket::m_ipv6RecvTclass
private

socket forwards IPv6 Tclass tag to L4

Definition at line 1104 of file socket.h.

Referenced by IsIpv6RecvTclass(), and SetIpv6RecvTclass().

◆ m_ipv6Tclass

uint8_t ns3::Socket::m_ipv6Tclass
private

the socket IPv6 Tclass

Definition at line 1107 of file socket.h.

Referenced by GetIpv6Tclass(), SetIpv6Tclass(), and Socket().

◆ m_manualIpTtl

bool ns3::Socket::m_manualIpTtl
private

socket has IPv4 TTL set

Definition at line 1094 of file socket.h.

Referenced by IsManualIpTtl(), and SetIpTtl().

◆ m_manualIpv6HopLimit

bool ns3::Socket::m_manualIpv6HopLimit
private

socket has IPv6 Hop Limit set

Definition at line 1103 of file socket.h.

Referenced by IsManualIpv6HopLimit(), and SetIpv6HopLimit().

◆ m_manualIpv6Tclass

bool ns3::Socket::m_manualIpv6Tclass
private

socket has IPv6 Tclass set

Definition at line 1102 of file socket.h.

Referenced by IsManualIpv6Tclass(), and SetIpv6Tclass().

◆ m_newConnectionCreated

Callback<void, Ptr<Socket>, const Address&> ns3::Socket::m_newConnectionCreated
private

connection created callback

Definition at line 1086 of file socket.h.

Referenced by DoDispose(), NotifyNewConnectionCreated(), and SetAcceptCallback().

◆ m_normalClose

Callback<void, Ptr<Socket> > ns3::Socket::m_normalClose
private

connection closed callback

Definition at line 1083 of file socket.h.

Referenced by DoDispose(), NotifyNormalClose(), and SetCloseCallbacks().

◆ m_priority

uint8_t ns3::Socket::m_priority
private

the socket priority

Definition at line 1091 of file socket.h.

Referenced by GetPriority(), SetIpTos(), SetPriority(), and Socket().

◆ m_receivedData

Callback<void, Ptr<Socket> > ns3::Socket::m_receivedData
private

data received callback

Definition at line 1089 of file socket.h.

Referenced by DoDispose(), NotifyDataRecv(), and SetRecvCallback().

◆ m_recvPktInfo

bool ns3::Socket::m_recvPktInfo
protected

if the socket should add packet info tags to the packet forwarded to L4.

Definition at line 1077 of file socket.h.

Referenced by IsRecvPktInfo(), SetRecvPktInfo(), and Socket().

◆ m_sendCb

Callback<void, Ptr<Socket>, uint32_t > ns3::Socket::m_sendCb
private

packet sent callback

Definition at line 1088 of file socket.h.

Referenced by DoDispose(), NotifySend(), and SetSendCallback().


The documentation for this class was generated from the following files: