vssh 3.7.0__tar.gz → 3.7.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vssh
3
- Version: 3.7.0
3
+ Version: 3.7.1
4
4
  Summary: Secure SSH/SCP tool with Tailscale failover, P2P transport, and MCP server
5
5
  Author-email: MeshPOP <mpop@mpop.dev>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "vssh"
7
- version = "3.7.0"
7
+ version = "3.7.1"
8
8
  description = "Secure SSH/SCP tool with Tailscale failover, P2P transport, and MCP server"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vssh
3
- Version: 3.7.0
3
+ Version: 3.7.1
4
4
  Summary: Secure SSH/SCP tool with Tailscale failover, P2P transport, and MCP server
5
5
  Author-email: MeshPOP <mpop@mpop.dev>
6
6
  License: MIT
@@ -96,7 +96,7 @@ def _load_tailscale_map() -> dict:
96
96
  ips = [ip for ip in peer.get('TailscaleIPs', []) if ':' not in ip]
97
97
  if name and ips:
98
98
  ts_host[name] = ips[0]
99
- for srv_ip in ['10.99.85.143', '158.247.247.115']:
99
+ for srv_ip in WIRE_SERVERS:
100
100
  try:
101
101
  with _ur.urlopen(f'http://{srv_ip}:8790/peers', timeout=3) as r:
102
102
  for p in json.loads(r.read()).get('peers', []):
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes