Skip to content

Commit

Permalink
tcp: Add RecoveryOps attribute to TcpSocketBase
Browse files Browse the repository at this point in the history
  • Loading branch information
any-ket committed Jul 10, 2024
1 parent da1b884 commit c58ceb3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/internet/model/tcp-socket-base.cc
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,11 @@ TcpSocketBase::GetTypeId()
PointerValue(),
MakePointerAccessor(&TcpSocketBase::m_congestionControl),
MakePointerChecker<TcpCongestionOps>())
.AddAttribute("RecoveryOps",
"Pointer to TcpRecoveryOps object",
PointerValue(),
MakePointerAccessor(&TcpSocketBase::m_recoveryOps),
MakePointerChecker<TcpRecoveryOps>())
.AddAttribute(
"ReTxThreshold",
"Threshold for fast retransmit",
Expand Down

0 comments on commit c58ceb3

Please sign in to comment.