make the keep alive interval configurable (#3444)

* Make keep alive configurable

* Fix unit tests
This commit is contained in:
Nuno Diegues 2022-06-09 16:31:37 +01:00 committed by GitHub
parent 619fa9fb44
commit 4c96cf75bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 18 additions and 15 deletions

View file

@ -71,8 +71,8 @@ var _ = Describe("Config", func() {
f.Set(reflect.ValueOf(int64(12)))
case "StatelessResetKey":
f.Set(reflect.ValueOf([]byte{1, 2, 3, 4}))
case "KeepAlive":
f.Set(reflect.ValueOf(true))
case "KeepAlivePeriod":
f.Set(reflect.ValueOf(time.Second))
case "EnableDatagrams":
f.Set(reflect.ValueOf(true))
case "DisableVersionNegotiationPackets":