|
|
| 93 |
virtual Ptr<Packet> RecvFrom (uint32_t maxSize, uint32_t flags, |
93 |
virtual Ptr<Packet> RecvFrom (uint32_t maxSize, uint32_t flags, |
| 94 |
Address &fromAddress); |
94 |
Address &fromAddress); |
| 95 |
virtual int GetSockName (Address &address) const; |
95 |
virtual int GetSockName (Address &address) const; |
|
|
96 |
virtual int GetPeerName (Address &address) const; |
| 96 |
virtual int MulticastJoinGroup (uint32_t interfaceIndex, const Address &groupAddress); |
97 |
virtual int MulticastJoinGroup (uint32_t interfaceIndex, const Address &groupAddress); |
| 97 |
virtual int MulticastLeaveGroup (uint32_t interfaceIndex, const Address &groupAddress); |
98 |
virtual int MulticastLeaveGroup (uint32_t interfaceIndex, const Address &groupAddress); |
| 98 |
virtual void BindToNetDevice (Ptr<NetDevice> netdevice); |
99 |
virtual void BindToNetDevice (Ptr<NetDevice> netdevice); |
|
|
| 227 |
uint16_t m_defaultPort; //!< Default port |
228 |
uint16_t m_defaultPort; //!< Default port |
| 228 |
TracedCallback<Ptr<const Packet> > m_dropTrace; //!< Trace for dropped packets |
229 |
TracedCallback<Ptr<const Packet> > m_dropTrace; //!< Trace for dropped packets |
| 229 |
|
230 |
|
| 230 |
enum SocketErrno m_errno; //!< Socket error code |
231 |
mutable enum SocketErrno m_errno; //!< Socket error code |
| 231 |
bool m_shutdownSend; //!< Send no longer allowed |
232 |
bool m_shutdownSend; //!< Send no longer allowed |
| 232 |
bool m_shutdownRecv; //!< Receive no longer allowed |
233 |
bool m_shutdownRecv; //!< Receive no longer allowed |
| 233 |
bool m_connected; //!< Connection established |
234 |
bool m_connected; //!< Connection established |