LumaTunnel
【WinUI】LumaTunnel 是一个面向个人多设备的 Windows 代理系统。客户端在本机提供 HTTP/HTTPS CONNECT 与 SOCKS5 TCP 代理,并通过一个受信任 TLS 证书保护的 WSS 会话,将多个 TCP 流复用到自建 Windows Server 节点。
关注
0
Fork
0
Star
0
<?xml version="1.0" encoding="utf-8"?>
<Page x:Class="LumaTunnel.Client.Views.ConnectionsPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Loaded="OnLoaded" Unloaded="OnUnloaded">
<Grid Padding="32,24" RowSpacing="16">
<Grid.RowDefinitions><RowDefinition Height="Auto"/><RowDefinition Height="Auto"/><RowDefinition Height="*"/></Grid.RowDefinitions>
<TextBlock Text="活动连接" FontSize="30" FontWeight="SemiBold" />
<InfoBar Grid.Row="1" IsOpen="True" IsClosable="False" Severity="Informational" Message="目标信息仅保存在内存中,默认不会写入磁盘。" />
<ListView x:Name="ConnectionList" Grid.Row="2" />
</Grid>
</Page>
<?xml version="1.0" encoding="utf-8"?>
<Page x:Class="LumaTunnel.Client.Views.ConnectionsPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Loaded="OnLoaded" Unloaded="OnUnloaded">
<Grid Padding="32,24" RowSpacing="16">
<Grid.RowDefinitions><RowDefinition Height="Auto"/><RowDefinition Height="Auto"/><RowDefinition Height="*"/></Grid.RowDefinitions>
<TextBlock Text="活动连接" FontSize="30" FontWeight="SemiBold" />
<InfoBar Grid.Row="1" IsOpen="True" IsClosable="False" Severity="Informational" Message="目标信息仅保存在内存中,默认不会写入磁盘。" />
<ListView x:Name="ConnectionList" Grid.Row="2" />
</Grid>
</Page>