pkgsrc/net/ns/patches/patch-ar
minskim aad2643a57 Update ns to 2.29.
Changes:
- updated SCTP implementation.
- added new retransmission policy for sending fast retransmissions to
  the same destination and timeout retransmissions to an alternate
  destination
- added experimental feature: changePrimaryThresh_ sets a threshold for
  when the primary destination is changed automatically
- added the ability to specify one of three dormant state actions
- added the ability to track the number of times fast retransmit,
  multiple fast retransmit, and timeouts are invoked
- new TCL bindable variables: initial RTO, min RTO, max RTO, fast rtx
  trigger, and sack delay
- bug fixes.
2006-01-27 02:31:43 +00:00

23 lines
685 B
Text

$NetBSD: patch-ar,v 1.2 2006/01/27 02:31:43 minskim Exp $
--- xcp/xcpq.cc.orig 2005-10-19 21:45:25.000000000 -0700
+++ xcp/xcpq.cc
@@ -57,12 +57,12 @@ public:
} class_droptail_xcpq;
-const double XCPQueue::BWIDTH;
-const double XCPQueue::ALPHA_;
-const double XCPQueue::BETA_;
-const double XCPQueue::GAMMA_;
-const double XCPQueue::XCP_MAX_INTERVAL;
-const double XCPQueue::XCP_MIN_INTERVAL;
+const double XCPQueue::BWIDTH = 0.01;
+const double XCPQueue::ALPHA_ = 0.4;
+const double XCPQueue::BETA_ = 0.226;
+const double XCPQueue::GAMMA_ = 0.1;
+const double XCPQueue::XCP_MAX_INTERVAL = 1.0;
+const double XCPQueue::XCP_MIN_INTERVAL = .001;
const int XCPQueue::BSIZE;