diff --git a/.gitignore b/.gitignore index 9cc8a5d..ce42512 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,33 @@ /target/ /target_build/ +/target_linux/ /dist/ **/*.rs.bk .idea/ .vscode/ + +# Binaries & libraries *.exe *.dll *.so *.dylib *.pdb + +# Archives & temp extraction folders +*.zip +*_temp/ +*_new/ + +# Local scripts & test artifacts +test_route.ps1 + +# Config & secrets config.json wintun.dll + +# Logs *.log + +# Dev notes (not for repo) .ai-rules.md turn-harvesting-idea.md diff --git a/test_route.ps1 b/test_route.ps1 deleted file mode 100644 index 0109f7f..0000000 --- a/test_route.ps1 +++ /dev/null @@ -1,6 +0,0 @@ -$remote_ip = '138.124.241.18' -$route = Get-NetRoute -DestinationPrefix '0.0.0.0/0' | Sort-Object RouteMetric | Select-Object -First 1 -$gw = $route.NextHop -$ifIndex = $route.InterfaceIndex -Write-Host "Found route via $gw (interface $ifIndex)" -New-NetRoute -DestinationPrefix "$remote_ip/32" -NextHop $gw -InterfaceIndex $ifIndex -RouteMetric 1 diff --git a/tun2socks.zip b/tun2socks.zip deleted file mode 100644 index 5e6ec9b..0000000 Binary files a/tun2socks.zip and /dev/null differ diff --git a/tun2socks_new.zip b/tun2socks_new.zip deleted file mode 100644 index 5998984..0000000 Binary files a/tun2socks_new.zip and /dev/null differ diff --git a/wintun.zip b/wintun.zip deleted file mode 100644 index 34e1bdd..0000000 Binary files a/wintun.zip and /dev/null differ