common: rename repl_wrapper files

This commit is contained in:
Tyler Wilding
2024-06-02 12:50:28 -04:00
parent f586cb9af2
commit 2a0a7dc862
10 changed files with 13 additions and 12 deletions
+4 -2
View File
@@ -1,5 +1,7 @@
import socket
import struct
from time import sleep
clientSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM);
clientSocket.connect(("127.0.0.1", 8181))
print(clientSocket)
@@ -11,5 +13,5 @@ form = "(:status)"
header = struct.pack('<II', len(form), 10)
clientSocket.sendall(header + form.encode())
sleep(1)
clientSocket.sendall(header + form.encode())