1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/env python3 from smoke_socks5 import smoke_udp_direct def main() -> int: data = smoke_udp_direct() print(f"udp direct smoke ok: {data.decode('utf-8')}") return 0 if __name__ == "__main__": raise SystemExit(main())