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