This commit is contained in:
2024-04-24 13:28:38 -04:00
commit 45ac4648dd
24 changed files with 1218 additions and 0 deletions

51
old/socket_server.py Normal file
View File

@@ -0,0 +1,51 @@
import socket
import os
# Set the path for the Unix socket
socket_path = '/tmp/my_socket'
# remove the socket file if it already exists
try:
os.unlink(socket_path)
except OSError:
if os.path.exists(socket_path):
raise
# Create the Unix socket server
server = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
# Bind the socket to the path
server.bind(socket_path)
import time
from datetime import datetime
while True:
time.sleep(0.25)
print("Sending")
server.sendto(("Hello "+str(datetime.now())).encode(), socket_path)
# Listen for incoming connections
server.listen(1)
# accept connections
print('Server is listening for incoming connections...')
connection, client_address = server.accept()
try:
print('Connection from', str(connection).split(", ")[0][-4:])
# receive data from the client
while True:
data = connection.recv(1024)
if not data:
break
print('Received data:', data.decode())
# Send a response back to the client
response = 'Hello from the server!'
connection.sendall(response.encode())
finally:
# close the connection
connection.close()
# remove the socket file
os.unlink(socket_path)