add utils.InfDuration constant

This commit is contained in:
Lucas Clemente
2016-05-18 22:43:32 +02:00
parent 753f219638
commit 0a233a39b9
6 changed files with 18 additions and 18 deletions

View File

@@ -1,11 +1,15 @@
package utils
import (
"math"
"time"
"github.com/lucas-clemente/quic-go/protocol"
)
// InfDuration is a duration of infinite length
const InfDuration = time.Duration(math.MaxInt64)
// Max returns the maximum of two Ints
func Max(a, b int) int {
if a < b {