You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's a simple bug I met and I will give a reminder to resolve.
socket.type will be changed after settimeout/setblocking calling. And pysocks will not send proxy data after these 2 functions called, because socks.sockssocket.sendto just use socket.type to adjust how it will send message.
of course all code like this equal judgement for check whether is UDP socket might have same issue in python version less then 3.7, I hope you will fix it in next version.
please don't mind, just reminder, thanks for your project to help me.
The text was updated successfully, but these errors were encountered:
Here's a simple bug I met and I will give a reminder to resolve.
socket.type will be changed after settimeout/setblocking calling. And pysocks will not send proxy data after these 2 functions called, because socks.sockssocket.sendto just use socket.type to adjust how it will send message.
just look in python3.6.8:
in python3.8:
in python official document, they saied:
so the following code of pysocks will has a small bug:
of course all code like this equal judgement for check whether is UDP socket might have same issue in python version less then 3.7, I hope you will fix it in next version.
please don't mind, just reminder, thanks for your project to help me.
The text was updated successfully, but these errors were encountered: