mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-03-12 09:39:49 +00:00
Merge d99e72f4f7e41d058dad638f1b6053d0ee7fb835 into 338cbafe0d5b07d57f83060ea0f9ba3a6c1155e7
This commit is contained in:
commit
ee25134927
@ -13,6 +13,8 @@ def send_file(filename: str = "mytext.txt", testing: bool = False) -> None:
|
|||||||
conn, addr = sock.accept() # Establish connection with client.
|
conn, addr = sock.accept() # Establish connection with client.
|
||||||
print(f"Got connection from {addr}")
|
print(f"Got connection from {addr}")
|
||||||
data = conn.recv(1024)
|
data = conn.recv(1024)
|
||||||
|
if not data:
|
||||||
|
break # IF NOT data received,the Client has closed the Connection.
|
||||||
print(f"Server received: {data = }")
|
print(f"Server received: {data = }")
|
||||||
|
|
||||||
with open(filename, "rb") as in_file:
|
with open(filename, "rb") as in_file:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user