merge
This commit is contained in:
@@ -113,7 +113,7 @@ Object::DoGetObject (TypeId tid) const
|
||||
const Object *currentObject = this;
|
||||
do {
|
||||
NS_ASSERT (currentObject != 0);
|
||||
TypeId cur = currentObject->m_tid;
|
||||
TypeId cur = currentObject->GetInstanceTypeId ();
|
||||
while (cur != tid && cur != Object::GetTypeId ())
|
||||
{
|
||||
cur = cur.GetParent ();
|
||||
@@ -146,10 +146,11 @@ Object::AggregateObject (Ptr<Object> o)
|
||||
NS_ASSERT (CheckLoose ());
|
||||
NS_ASSERT (o->CheckLoose ());
|
||||
|
||||
if (DoGetObject (o->m_tid))
|
||||
if (DoGetObject (o->GetInstanceTypeId ()))
|
||||
{
|
||||
NS_FATAL_ERROR ("Object::AggregateObject(): "
|
||||
"Multiple aggregation of objects of type " << o->m_tid.GetName ());
|
||||
"Multiple aggregation of objects of type " <<
|
||||
o->GetInstanceTypeId ().GetName ());
|
||||
}
|
||||
|
||||
Object *other = PeekPointer (o);
|
||||
|
||||
@@ -379,7 +379,7 @@ template <typename T>
|
||||
Ptr<T> CopyObject (Ptr<T> object)
|
||||
{
|
||||
Ptr<T> p = Ptr<T> (new T (*PeekPointer (object)), false);
|
||||
NS_ASSERT (p->m_tid == object->m_tid);
|
||||
NS_ASSERT (p->GetInstanceTypeId () == object->GetInstanceTypeId ());
|
||||
return p;
|
||||
}
|
||||
|
||||
@@ -387,7 +387,7 @@ template <typename T>
|
||||
Ptr<T> CopyObject (Ptr<const T> object)
|
||||
{
|
||||
Ptr<T> p = Ptr<T> (new T (*PeekPointer (object)), false);
|
||||
NS_ASSERT (p->m_tid == object->m_tid);
|
||||
NS_ASSERT (p->GetInstanceTypeId () == object->GetInstanceTypeId ());
|
||||
return p;
|
||||
}
|
||||
|
||||
|
||||
@@ -51,23 +51,6 @@ public:
|
||||
TcpSocket (void);
|
||||
virtual ~TcpSocket (void);
|
||||
|
||||
virtual enum Socket::SocketErrno GetErrno (void) const = 0;
|
||||
virtual Ptr<Node> GetNode (void) const = 0;
|
||||
virtual int Bind () = 0;
|
||||
virtual int Close (void) = 0;
|
||||
virtual int ShutdownSend (void) = 0;
|
||||
virtual int ShutdownRecv (void) = 0;
|
||||
virtual int Connect (const Address &address) = 0;
|
||||
virtual uint32_t GetTxAvailable (void) const = 0;
|
||||
virtual int Send (Ptr<Packet> p, uint32_t flags) = 0;
|
||||
virtual int SendTo (Ptr<Packet> p, uint32_t flags,
|
||||
const Address &toAddress) = 0;
|
||||
virtual uint32_t GetRxAvailable (void) const = 0;
|
||||
virtual Ptr<Packet> Recv (uint32_t maxSize, uint32_t flags) = 0;
|
||||
virtual Ptr<Packet> RecvFrom (uint32_t maxSize, uint32_t flags,
|
||||
Address &fromAddress) = 0;
|
||||
|
||||
|
||||
private:
|
||||
// Indirect the attribute setting and getting through private virtual methods
|
||||
virtual void SetSndBufSize (uint32_t size) = 0;
|
||||
|
||||
@@ -50,22 +50,6 @@ public:
|
||||
UdpSocket (void);
|
||||
virtual ~UdpSocket (void);
|
||||
|
||||
virtual enum Socket::SocketErrno GetErrno (void) const = 0;
|
||||
virtual Ptr<Node> GetNode (void) const = 0;
|
||||
virtual int Bind () = 0;
|
||||
virtual int Close (void) = 0;
|
||||
virtual int ShutdownSend (void) = 0;
|
||||
virtual int ShutdownRecv (void) = 0;
|
||||
virtual int Connect (const Address &address) = 0;
|
||||
virtual uint32_t GetTxAvailable (void) const = 0;
|
||||
virtual int Send (Ptr<Packet> p, uint32_t flags) = 0;
|
||||
virtual int SendTo (Ptr<Packet> p, uint32_t flags,
|
||||
const Address &toAddress) = 0;
|
||||
virtual uint32_t GetRxAvailable (void) const = 0;
|
||||
virtual Ptr<Packet> Recv (uint32_t maxSize, uint32_t flags) = 0;
|
||||
virtual Ptr<Packet> RecvFrom (uint32_t maxSize, uint32_t flags,
|
||||
Address &fromAddress) = 0;
|
||||
|
||||
private:
|
||||
// Indirect the attribute setting and getting through private virtual methods
|
||||
virtual void SetRcvBufSize (uint32_t size) = 0;
|
||||
|
||||
Reference in New Issue
Block a user