-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
96 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package p2p | ||
|
||
const MinScore = 0 | ||
const MaxScore = 1000 | ||
|
||
func boundedAdj(current int, adj int) int { | ||
current += adj | ||
if current > MaxScore { | ||
current = MaxScore | ||
} else if current < MinScore { | ||
current = MinScore | ||
} | ||
return current | ||
} | ||
|
||
func QualityAdjOnBroadcast(current int) int { | ||
return boundedAdj(current, 1) | ||
} | ||
func QualityAdjOnResponse(current int) int { | ||
return boundedAdj(current, 10) | ||
} | ||
func QualityAdjOnNack(current int) int { | ||
return boundedAdj(current, -10) | ||
} | ||
func QualityAdjOnTimeout(current int) int { | ||
return boundedAdj(current, -20) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters