Commit 9070d09f91bee23489940427676ccdc951778d13

Thomas de Grivel 2024-07-25T16:26:03

test/http/03_server: port 8000 -> 58000

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/test/http/03_server.kc3 b/test/http/03_server.kc3
index f14e1d9..8a2949c 100644
--- a/test/http/03_server.kc3
+++ b/test/http/03_server.kc3
@@ -1,7 +1,7 @@
-quote server = Socket.listen("localhost", "8000")
-server = Socket.listen("localhost", "8000")
-quote client = Socket.connect("localhost", "8000")
-client = Socket.connect("localhost", "8000")
+quote server = Socket.listen("localhost", "58000")
+server = Socket.listen("localhost", "58000")
+quote client = Socket.connect("localhost", "58000")
+client = Socket.connect("localhost", "58000")
 quote server_client = Socket.accept(server)
 server_client = Socket.accept(server)
 quote Socket.Buf.close(client)