Replies: 1 comment 5 replies
-
I don't understand the problem. Flask-SocketIO doesn't use UDP nor port 514. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using Flask-SocketIO and i am starting a socketserver in Windows10
import socketserver
handler = socketserver.UDPServer(("", 514), handle_func)
i can not run this code anymore when using Flask-SocketIO, is it possible to change the port for Flask-SocketIO?
I can not change the port because i am listening to syslog events on UDP port 514.
File "C:\Program Files\Python39\lib\socketserver.py", line 466, in server_bind
self.socket.bind(self.server_address)
OSError: [WinError 10048] Only one usage of each socket address (protocol/network address/port) is normally permitted
Beta Was this translation helpful? Give feedback.
All reactions