Skip to content

Commit

Permalink
Tcp: credit "DcTcp" as a supported flavor, too
Browse files Browse the repository at this point in the history
  • Loading branch information
avarga committed Sep 25, 2023
1 parent 6dad206 commit d4d1596
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inet/transportlayer/tcp/Tcp.ned
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ simple Tcp like ITcp
bool timestampSupport = default(false); // Timestamps (RFC 1323) support (header option) (TS will be enabled for a connection if both endpoints support it)
int mss = default(536); // Maximum Segment Size (RFC 793) (header option)
int msl @unit(s) = default(120s); // Maximum Segment Lifetime
string tcpAlgorithmClass @enum("TcpVegas", "TcpWestwood", "TcpNewReno", "TcpReno", "TcpTahoe", "TcpNoCongestionControl") = default("TcpReno");
string tcpAlgorithmClass @enum("TcpVegas", "TcpWestwood", "DcTcp", "TcpNewReno", "TcpReno", "TcpTahoe", "TcpNoCongestionControl") = default("TcpReno");
bool useDataNotification = default(false); // turn the notifications for arrived data on or off
int dupthresh = default(3); // used for TcpTahoe, TcpReno and SACK (RFC 3517) DO NOT change unless you really know what you are doing
int initialSsthresh = default(0xFFFFFFFF); // initial value for Slow Start threshold used in TahoeRenoFamily. The initial value of ssthresh SHOULD be set arbitrarily high (e.g.,to the size of the largest possible advertised window) Without user interaction there is no limit...
Expand Down

0 comments on commit d4d1596

Please sign in to comment.