mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
fix: example using old url no longer valid
Signed-off-by: Gaukas Wang <i@gaukas.wang>
This commit is contained in:
parent
888b9cb09d
commit
258eeafc94
1 changed files with 6 additions and 6 deletions
|
@ -171,8 +171,8 @@ func runResumptionCheck(helloID tls.ClientHelloID, getCustomSpec func() *tls.Cli
|
|||
|
||||
func main() {
|
||||
tls13Url := "www.microsoft.com:443"
|
||||
tls12Url1 := "spocs.getpocket.com:443"
|
||||
tls12Url2 := "marketplace.visualstudio.com:443"
|
||||
tls13HRRUrl := "marketplace.visualstudio.com:443" // will send HRR for P384/P521
|
||||
tls12Url := "tls-v1-2.badssl.com:1012"
|
||||
runResumptionCheck(tls.HelloChrome_100, nil, noResumption, tls13Url, 3, false) // no-resumption + utls
|
||||
func() {
|
||||
defer func() {
|
||||
|
@ -189,9 +189,9 @@ func main() {
|
|||
runResumptionCheck(tls.HelloChrome_100_PSK, nil, pskResumption, tls13Url, 1, false) // psk + utls
|
||||
runResumptionCheck(tls.HelloGolang, nil, pskResumption, tls13Url, 1, false) // psk + crypto/tls
|
||||
|
||||
runResumptionCheck(tls.HelloChrome_100_PSK, nil, ticketResumption, tls12Url1, 10, false) // session ticket + utls
|
||||
runResumptionCheck(tls.HelloGolang, nil, ticketResumption, tls12Url1, 10, false) // session ticket + crypto/tls
|
||||
runResumptionCheck(tls.HelloChrome_100_PSK, nil, ticketResumption, tls12Url2, 10, false) // session ticket + utls
|
||||
runResumptionCheck(tls.HelloGolang, nil, ticketResumption, tls12Url2, 10, false) // session ticket + crypto/tls
|
||||
runResumptionCheck(tls.HelloChrome_100_PSK, nil, pskResumption, tls13HRRUrl, 20, false) // psk (HRR) + utls
|
||||
runResumptionCheck(tls.HelloGolang, nil, pskResumption, tls13HRRUrl, 20, false) // psk (HRR) + crypto/tls
|
||||
|
||||
runResumptionCheck(tls.HelloChrome_100_PSK, nil, ticketResumption, tls12Url, 10, false) // session ticket + utls
|
||||
runResumptionCheck(tls.HelloGolang, nil, ticketResumption, tls12Url, 10, false) // session ticket + crypto/tls
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue