mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
Merge pull request #2162 from lucas-clemente/datagram
implement the datagram draft
This commit is contained in:
commit
9693a46d31
36 changed files with 879 additions and 67 deletions
|
@ -8,9 +8,7 @@ import (
|
|||
"io/ioutil"
|
||||
mrand "math/rand"
|
||||
"net"
|
||||
"os"
|
||||
"runtime/pprof"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
@ -181,15 +179,6 @@ var _ = Describe("Timeout tests", func() {
|
|||
Context("timing out at the right time", func() {
|
||||
var idleTimeout time.Duration
|
||||
|
||||
scaleDuration := func(d time.Duration) time.Duration {
|
||||
scaleFactor := 1
|
||||
if f, err := strconv.Atoi(os.Getenv("TIMESCALE_FACTOR")); err == nil { // parsing "" errors, so this works fine if the env is not set
|
||||
scaleFactor = f
|
||||
}
|
||||
Expect(scaleFactor).ToNot(BeZero())
|
||||
return time.Duration(scaleFactor) * d
|
||||
}
|
||||
|
||||
BeforeEach(func() {
|
||||
idleTimeout = scaleDuration(100 * time.Millisecond)
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue