()
| 45 | |
| 46 | @staticmethod |
| 47 | def get_supported_features(): |
| 48 | result = Features() |
| 49 | result.loopback_proxy_port = True |
| 50 | result.ipv4 = True |
| 51 | result.ipv6 = False |
| 52 | result.udp = False |
| 53 | result.dns = True |
| 54 | result.user = False |
| 55 | result.group = False |
| 56 | return result |
| 57 | |
| 58 | @staticmethod |
| 59 | def is_supported(): |
no test coverage detected