Add e2e test cases for shadowsocks

This commit is contained in:
RMT
2026-05-12 13:52:31 +03:00
parent d4c9ef5056
commit 8740e6f258
28 changed files with 849 additions and 47 deletions
+9
View File
@@ -0,0 +1,9 @@
import socket
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.bind(("0.0.0.0", 5679))
while True:
data, addr = sock.recvfrom(2048)
sock.sendto(data, addr)