ping method
Ping server with configuration
Implementation
@override
Future<int> ping(String config, String url, {int timeout = 10}) async {
if (!isSupported) {
return -1;
}
// TODO: Implement V2Ray ping
// For now, return -1 (not implemented)
return -1;
}