From 2c1bd705f28f0ab924aca4fc94011744a7f2205c Mon Sep 17 00:00:00 2001 From: acidvegas Date: Sat, 12 Oct 2024 23:06:55 -0400 Subject: [PATCH] Increased timeout --- jknockr.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/jknockr.py b/jknockr.py index bb9c7fa..3385cf2 100644 --- a/jknockr.py +++ b/jknockr.py @@ -51,7 +51,7 @@ def client_join(client_id: int, tlds: list, args: argparse.Namespace, video_id: print(f'Client {client_id}: Establishing session') body = f'''''' request = urllib.request.Request(bosh_url, data=body.encode('utf-8'), headers=headers, method='POST') - response = opener.open(request, timeout=10) + response = opener.open(request, timeout=30) response_text = response.read().decode('utf-8') sid = extract_sid(response_text) if not sid: @@ -65,7 +65,7 @@ def client_join(client_id: int, tlds: list, args: argparse.Namespace, video_id: ''' request = urllib.request.Request(bosh_url, data=auth_body.encode('utf-8'), headers=headers, method='POST') - response = opener.open(request, timeout=10) + response = opener.open(request, timeout=30) response_text = response.read().decode('utf-8') if '''' request = urllib.request.Request(bosh_url, data=restart_body.encode('utf-8'), headers=headers, method='POST') - response = opener.open(request, timeout=10) + response = opener.open(request, timeout=30) rid += 1 print(f'Client {client_id}: Binding resource') bind_body = f''' @@ -86,7 +86,7 @@ def client_join(client_id: int, tlds: list, args: argparse.Namespace, video_id: ''' request = urllib.request.Request(bosh_url, data=bind_body.encode('utf-8'), headers=headers, method='POST') - response = opener.open(request, timeout=10) + response = opener.open(request, timeout=30) response_text = response.read().decode('utf-8') jid = extract_jid(response_text) if not jid: @@ -108,7 +108,7 @@ def client_join(client_id: int, tlds: list, args: argparse.Namespace, video_id: ''' request = urllib.request.Request(bosh_url, data=presence_body.encode('utf-8'), headers=headers, method='POST') - response = opener.open(request, timeout=10) + response = opener.open(request, timeout=30) response_text = response.read().decode('utf-8') print(f'Client {client_id}: Server response to initial presence (join room):') print(response_text) @@ -145,7 +145,7 @@ def client_join(client_id: int, tlds: list, args: argparse.Namespace, video_id: ''' request = urllib.request.Request(bosh_url, data=presence_body.encode('utf-8'), headers=headers, method='POST') - response = opener.open(request, timeout=10) + response = opener.open(request, timeout=30) response_text = response.read().decode('utf-8') print(f'Client {client_id}: Server response to presence update:') print(response_text) @@ -164,7 +164,7 @@ def client_join(client_id: int, tlds: list, args: argparse.Namespace, video_id: ''' request = urllib.request.Request(bosh_url, data=message_body.encode('utf-8'), headers=headers, method='POST') - response = opener.open(request, timeout=10) + response = opener.open(request, timeout=30) response_text = response.read().decode('utf-8') print(f'Client {client_id}: Server response to message {i}:') print(response_text) @@ -226,7 +226,7 @@ def main() -> None: try: tlds_url = 'https://data.iana.org/TLD/tlds-alpha-by-domain.txt' request = urllib.request.Request(tlds_url) - with urllib.request.urlopen(request, timeout=10) as response: + with urllib.request.urlopen(request, timeout=30) as response: response_text = response.read().decode('utf-8') tlds = [line.lower() for line in response_text.splitlines() if not line.startswith('#')] print(f'Number of TLDs fetched: {len(tlds)}')