Pithikos / python-websocket-server

A simple fully working websocket-server in Python with no external dependencies
MIT License
1.13k stars 380 forks source link

Abnormal port connection requests will cause the websocket-server to report an error #113

Open yunho opened 1 year ago

yunho commented 1 year ago

sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM); addr = ("127.0.0.1", 9001); sock.connect(addr)

Abnormal port connection requests will cause the websocket-server to report an error