From e020d9ee441c4e384a3abd16525e20e08695dd44 Mon Sep 17 00:00:00 2001 From: armand Date: Fri, 26 Sep 2025 11:46:47 +0200 Subject: [PATCH] Update tcp_client_split_call.py removed an extra '}' in the code --- tcp_client_split_call.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcp_client_split_call.py b/tcp_client_split_call.py index 5aee44c..2dddbeb 100644 --- a/tcp_client_split_call.py +++ b/tcp_client_split_call.py @@ -16,7 +16,7 @@ def test_request_single_packet(): sock.connect((f'{tcp_server_adress}', 80)) request = b"GET / HTTP/1.1\r\nHost: " request.append(tcp_server_adress.encode()) - request.append(b"}\r\n\r\n") + request.append(b"\r\n\r\n") sock.sendall(request.encode()) print_sock_ctts() sock.close()