kube-escape/proxy.py
Frank Villaro-Dixon 170adf5436 pocv2
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-08-27 22:26:35 +02:00

37 lines
1.1 KiB
Python

import asyncio
import websockets
import hashlib
import websockets.asyncio.server
# List to store connected clients
connected_clients = set()
async def handler(websocket):
# Register the new client
print(f"New client connected: {websocket}")
print(f"WRP: {websocket.request.path}")
connected_clients.add(websocket)
try:
async for message in websocket:
# Forward the message to all connected clients
for client in connected_clients:
if client != websocket:
print(f"WS>WS: ", hashlib.md5(message).hexdigest())
await client.send(message)
except websockets.exceptions.ConnectionClosed as e:
print(f"Connection closed: {e}")
finally:
# Unregister the client
connected_clients.remove(websocket)
async def main():
# Start the WebSocket server
server = await websockets.asyncio.server.serve(handler, "localhost", 9999)
print("WebSocket server listening on ws://localhost:9999")
await server.wait_closed()
if __name__ == "__main__":
asyncio.run(main())