initial-import: 2026-04-11 21:18:55

This commit is contained in:
cfdaily
2026-04-11 21:18:55 +08:00
commit 5e6b2d73eb
264 changed files with 117047 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env python3
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
result = s.bind(('0.0.0.0', 8008))
print("✅ 端口8008空闲,可以绑定")
s.close()
except OSError as e:
print(f"❌ 端口8008被占用: {e}")