[Spread-cvs] commit: r614 - branches/spread_4_2_debug/daemon

jschultz at spread.org jschultz at spread.org
Fri Oct 25 14:00:01 EDT 2013


Author: jschultz
Date: 2013-10-25 14:00:00 -0400 (Fri, 25 Oct 2013)
New Revision: 614

Modified:
   branches/spread_4_2_debug/daemon/membership.c
Log:
Potential bugfix for retrans / discard bug


Modified: branches/spread_4_2_debug/daemon/membership.c
===================================================================
--- branches/spread_4_2_debug/daemon/membership.c	2013-10-25 17:05:44 UTC (rev 613)
+++ branches/spread_4_2_debug/daemon/membership.c	2013-10-25 18:00:00 UTC (rev 614)
@@ -2031,19 +2031,20 @@
 		send_scat.num_elements = 1;
 
 		form_token->type = 0;
-		form_token->seq = 0; /*-1;*/ /*0;*/
+		form_token->seq = -1; /*0;*/
 		form_token->aru = Last_seq;
 		form_token->flow_control = 0;
 		form_token->rtr_len = 0;
 
 		Net_send_token( &send_scat );
+		Net_send_token( &send_scat );
 		Token_rounds = 1;
 	}
 	Token_alive = 1;
 	E_queue( Memb_token_loss, 0, NULL, Token_timeout );
     	
 	Last_token->type = 0;
-	Last_token->seq  = 0;
+	Last_token->seq  = -1; /*0;*/
 	Last_token->aru  = 0;
 
 	State = EVS;




More information about the Spread-cvs mailing list