commit: r511 - trunk/daemon
[email protected] Thu, 19 Apr 2012 13:03:22 -0400
| Newsgroups | gmane.network.spread.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: jonathan Date: 2012-04-19 13:03:22 -0400 (Thu, 19 Apr 2012) New Revision: 511 Modified: trunk/daemon/Changelog trunk/daemon/flow_control.c Log: Update default flow control values Modified: trunk/daemon/Changelog =================================================================== --- trunk/daemon/Changelog 2012-04-17 14:03:23 UTC (rev 510) +++ trunk/daemon/Changelog 2012-04-19 17:03:22 UTC (rev 511) @@ -1,3 +1,8 @@ +Thu Apr 19 13:01:30 2012 Jonathan Stanton <[email protected]> + + * flow_control.c (FC_init): Increase default flow control values + for the ring. + Mon Feb 20 21:35:49 2012 Jonathan Stanton <[email protected]> * SpreadConnection.java: Fix deadlock in stopListener where listener Modified: trunk/daemon/flow_control.c =================================================================== --- trunk/daemon/flow_control.c 2012-04-17 14:03:23 UTC (rev 510) +++ trunk/daemon/flow_control.c 2012-04-19 17:03:22 UTC (rev 511) @@ -45,8 +45,8 @@ void FC_init( ) { - Window = 60; - Personal_window = 15; + Window = 300; + Personal_window = 50; GlobalStatus.window = Window; GlobalStatus.personal_window = Personal_window;