クラス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になります。しかし、コンパイルエラーが発生します。
よろしく