Enhance protocol blocking service to monitor and update active VPN peer IPs

This commit is contained in:
ImBenji
2025-08-29 00:46:06 +01:00
parent 26fff45c28
commit 84d6a96495

View File

@@ -91,6 +91,10 @@ class ProtocolBlockingService {
if (_scanCount % 100 == 0) {
print('🔍 Found ${tcpConnections.length} TCP + ${udpConnections.length} UDP connections');
// Debug: show first few connections to see the format
if (tcpConnections.isNotEmpty) {
print('Debug - First TCP connection: ${tcpConnections.first}');
}
}
for (final conn in [...tcpConnections, ...udpConnections]) {