-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathold_server.py
33 lines (27 loc) · 1.07 KB
/
old_server.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
import asyncio
import websockets
async def handle_connection(websocket):
print(f"[+] New client connected: {websocket.remote_address}")
await websocket.send("Hello, client!")
while not websocket.closed:
try:
await send_message(websocket)
except websockets.exceptions.ConnectionClosed:
print(f"[-] Connection closed by client: {websocket.remote_address}")
break
print(f"[-] Client disconnected: {websocket.remote_address}")
async def send_message(websocket):
while True:
response = await websocket.recv()
print(response)
message = input(f"{websocket.remote_address[0]}~# ")
await websocket.send(message)
async def main():
async with websockets.serve(handle_connection, "localhost", 8765) as websocket:
print("[+] WebSocket server started on ws://localhost:8765")
await asyncio.Future()
if __name__ == "__main__":
try:
asyncio.run(main())
except KeyboardInterrupt:
print("[!] Shutting down server and exiting...")