mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
implement more cubic sender tests
This commit is contained in:
parent
153ff598d9
commit
b6a2f72b29
7 changed files with 297 additions and 10 deletions
|
@ -141,6 +141,14 @@ func Max(a, b int) int {
|
|||
return a
|
||||
}
|
||||
|
||||
// MaxUint32 returns the maximum of two uint32
|
||||
func MaxUint32(a, b uint32) uint32 {
|
||||
if a < b {
|
||||
return b
|
||||
}
|
||||
return a
|
||||
}
|
||||
|
||||
// MaxUint64 returns the maximum of two uint64
|
||||
func MaxUint64(a, b uint64) uint64 {
|
||||
if a < b {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue