-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathserver.py
51 lines (38 loc) · 1.29 KB
/
server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import socket
from tqdm import tqdm
IP = socket.gethostbyname(socket.gethostname())
PORT = 4456
ADDR = (IP, PORT)
SIZE = 1024
FORMAT = "utf-8"
def main():
""" Creating a TCP server socket """
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server.bind(ADDR)
server.listen()
print("[+] Listening...")
""" Accepting the connection from the client. """
conn, addr = server.accept()
print(f"[+] Client connected from {addr[0]}:{addr[1]}")
""" Receiving the filename and filesize from the client. """
data = conn.recv(SIZE).decode(FORMAT)
item = data.split("_")
FILENAME = item[0]
FILESIZE = int(item[1])
print("[+] Filename and filesize received from the client.")
conn.send("Filename and filesize received".encode(FORMAT))
""" Data transfer """
bar = tqdm(range(FILESIZE), f"Receiving {FILENAME}", unit="B", unit_scale=True, unit_divisor=SIZE)
with open(f"recv_{FILENAME}", "w") as f:
while True:
data = conn.recv(SIZE).decode(FORMAT)
if not data:
break
f.write(data)
conn.send("Data received.".encode(FORMAT))
bar.update(len(data))
""" Closing connection. """
conn.close()
server.close()
if __name__ == "__main__":
main()