Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(503)

Unified Diff: src/internet/model/ipv4-queue-disc-item.cc

Issue 328380044: Patch for GSOC Project : Framework for TCP Prague simulations in ns-3
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/internet/model/ipv4-queue-disc-item.cc
===================================================================
--- a/src/internet/model/ipv4-queue-disc-item.cc
+++ b/src/internet/model/ipv4-queue-disc-item.cc
@@ -94,6 +94,18 @@
bool
+Ipv4QueueDiscItem::IsL4S (void)
+{
+ NS_LOG_FUNCTION (this);
+ if (!m_headerAdded && m_header.GetEcn () == Ipv4Header::ECN_ECT1)
+ {
+ return true;
+ }
+ return false;
n.p 2017/09/10 09:31:04 It's not blocking, but in these situations, you ca
+}
+
+
+bool
Ipv4QueueDiscItem::GetUint8Value (QueueItem::Uint8Values field, uint8_t& value) const
{
bool ret = false;

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b