Skip to content

Commit 1d69d6e

Browse files
author
Vahid Farid
committed
Update start.py
1 parent 2567f7c commit 1d69d6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

start.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ def getLatencyAndJitter(ip, acceptable_latency):
455455
# Set the headers for the download request
456456
headers = {'Host': 'speed.cloudflare.com'}
457457
# Set the parameters for the download request
458-
params = {'resolve': f"speed.cloudflare.com:443:{ip}"}
458+
params = {'resolve': f"speed.cloudflare.com:443:{ip}", 'alpn': 'h2,http/1.1', 'utls': 'random'}
459459

460460
latency = 0
461461
jitter = 0
@@ -511,7 +511,7 @@ def getDownloadSpeed(ip, size, min_speed):
511511
# Set the headers for the download request
512512
headers = {'Host': 'speed.cloudflare.com'}
513513
# Set the parameters for the download request
514-
params = {'resolve': f"speed.cloudflare.com:443:{ip}"}
514+
params = {'resolve': f"speed.cloudflare.com:443:{ip}", 'alpn': 'h2,http/1.1', 'utls': 'random'}
515515

516516
try:
517517
# Start the timer for the download request
@@ -551,7 +551,7 @@ def getUploadSpeed(ip, size, min_speed):
551551
# Set the URL, headers, and parameters for the request
552552
url = 'https://speed.cloudflare.com/__up'
553553
headers = {'Content-Type': 'multipart/form-data', 'Host': 'speed.cloudflare.com'}
554-
params = {'resolve': f"speed.cloudflare.com:443:{ip}"}
554+
params = {'resolve': f"speed.cloudflare.com:443:{ip}", 'alpn': 'h2,http/1.1', 'utls': 'random'}
555555
# Create a sample file with null bytes of the specified size
556556
files = {'file': ('sample.bin', b"\x00" * upload_size)}
557557

0 commit comments

Comments
 (0)