We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eed917f commit 6b4e36cCopy full SHA for 6b4e36c
sshuttle/methods/__init__.py
@@ -39,6 +39,7 @@ def get_supported_features(self):
39
result = Features()
40
result.ipv6 = False
41
result.udp = False
42
+ result.dns = True
43
return result
44
45
def get_tcp_dstip(self, sock):
sshuttle/methods/tproxy.py
@@ -107,8 +107,10 @@ def get_supported_features(self):
107
result.ipv6 = True
108
if recvmsg is None:
109
110
+ result.dns = False
111
else:
112
result.udp = True
113
114
115
116
0 commit comments