Make sure all vpnAddrs are hoisted to primary, resolve a few more TODOs (#1319)

This commit is contained in:
Nate Brown
2025-01-30 13:33:19 -06:00
committed by GitHub
parent 1ad0f57c1e
commit e4daed3563
15 changed files with 61 additions and 112 deletions

View File

@@ -149,7 +149,7 @@ func unmarshalCertificateFromHandshake(v Version, b []byte, publicKey []byte, cu
case Version2:
c, err = unmarshalCertificateV2(b, publicKey, curve)
default:
//TODO: make a static var
//TODO: CERT-V2 make a static var
return nil, fmt.Errorf("unknown certificate version %d", v)
}