TcpTahoe 类是套接字类的子类。看http://www.nsnam.org/doxygen/classns3_1_1_tcp_tahoe.html (我想模拟一个小型网络。)
代码:
Ptr<Socket> ns3TcpSocket;
...
Ptr<TcpTahoe> ptr = dynamic_cast< Ptr<TcpTahoe> >(ns3TcpSocket);
uint32_t ssthresh = ptr->GetSSThresh2();
cout << ssthresh;
所以我现在在运行时,ns3TcpSocket 将是一个 TcpTahoeSocket。但我得到一个编译错误。
问候