move MaxTokenAge configuration option to the Transport (#4084)

This commit is contained in:
Marten Seemann 2023-09-16 19:10:20 +07:00 committed by GitHub
parent 9b82196578
commit 1affe38703
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 14 additions and 13 deletions

View file

@ -901,7 +901,7 @@ var _ = Describe("Server", func() {
It("sends an INVALID_TOKEN error, if an expired non-retry token is received", func() {
serv.config.RequireAddressValidation = func(net.Addr) bool { return true }
serv.config.MaxTokenAge = time.Millisecond
serv.maxTokenAge = time.Millisecond
raddr := &net.UDPAddr{IP: net.IPv4(127, 0, 0, 1), Port: 1337}
token, err := serv.tokenGenerator.NewToken(raddr)
Expect(err).ToNot(HaveOccurred())