Changeset 5779 for source/ariba/overlay/modules
- Timestamp:
- Aug 7, 2009, 1:20:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/overlay/modules/chord/Chord.cpp
r5776 r5779 453 453 void Chord::eventFunction() { 454 454 stabilize_counter++; 455 if (stabilize_counter < 0 || stabilize_counter == 4) {455 if (stabilize_counter < 0 || stabilize_counter >= 2) { 456 456 457 457 // reset counter … … 491 491 back_route& br = *i; 492 492 if (difftime(br.lastseen,time(NULL))>5) i = 493 back_routes.erase(i) ;493 back_routes.erase(i)-1; 494 494 } 495 495 logging_info("Running orphan removal");
Note:
See TracChangeset
for help on using the changeset viewer.