fix: Fix local proxy UI

This commit is contained in:
aiamnezia
2026-02-13 15:46:27 +04:00
parent 4c2010244b
commit 6518d4866e
14 changed files with 263 additions and 82 deletions
@@ -0,0 +1,11 @@
#pragma once
#include <optional>
class PortAvailabilityHelper
{
public:
static bool isPortAvailable(int port);
static std::optional<int> findFirstAvailablePort(int startPort, int endPort);
};