-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.py
38 lines (34 loc) · 939 Bytes
/
request.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
import socket
import os
import struct
# Get unix socket address
f = open('x.unixSocketAddress', 'r')
path = f.read()
f.close()
# Set the path for the Unix socket
socket_path = path
# Create the Unix socket client
client = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
client.setblocking(True)
# Connect to the server
client.connect(socket_path)
# Send a message to the server
message = 'Hello from the client!'
client.sendall(message.encode())
# Receive a response from the server
rcvWindow = 1024
whole = bytearray()
with client:
done=False
while not done:
data = client.recv(rcvWindow)
whole.extend(data)
if len(data)!=rcvWindow:
done = True
client.close()
break
message = whole.split(b"\n")
unpackParameter = message[0].decode()
data = struct.unpack(unpackParameter, message[1])
print(data)
print('done')