mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
add cubic implementation ported from chrome
This commit is contained in:
parent
50d38eac39
commit
c72c9336b0
4 changed files with 377 additions and 0 deletions
|
@ -139,6 +139,14 @@ func Max(a, b int) int {
|
|||
return a
|
||||
}
|
||||
|
||||
// MaxUint64 returns the maximum of two uint64
|
||||
func MaxUint64(a, b uint64) uint64 {
|
||||
if a < b {
|
||||
return b
|
||||
}
|
||||
return a
|
||||
}
|
||||
|
||||
// Min returns the minimum of two Ints
|
||||
func Min(a, b int) int {
|
||||
if a < b {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue