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
Attempts to replace a module's socket library with a SOCKS socket.
This will only work on modules that import socket directly into the
namespace; most of the Python Standard Library falls into this category.
"""
module.socket.socket=socksocket
module.socket.create_connection=sockcreateconn
This function is pointless, in fact it just made a monkey patch to socket.socket, cannot be applied to the given module only. Please change or remove it.
The text was updated successfully, but these errors were encountered:
PySocksipyChain/sockschain/__init__.py
Lines 1042 to 1049 in 535f493
This function is pointless, in fact it just made a monkey patch to
socket.socket
, cannot be applied to the given module only. Please change or remove it.The text was updated successfully, but these errors were encountered: