From 33414eea411c5aba969fe789d0c4875b7b5d8e62 Mon Sep 17 00:00:00 2001 From: Bilal el Ayachi Date: Sun, 7 Apr 2024 22:48:06 +0200 Subject: [PATCH] [change] changed server port to correct port number --- unreliable_chat_check/BrokenChatServerLocal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unreliable_chat_check/BrokenChatServerLocal.go b/unreliable_chat_check/BrokenChatServerLocal.go index c9fb811..2cb3c7d 100644 --- a/unreliable_chat_check/BrokenChatServerLocal.go +++ b/unreliable_chat_check/BrokenChatServerLocal.go @@ -241,7 +241,7 @@ func (b *BrokenMessageOutputStream) WriteAndLog(msg []byte, addr net.Addr) { func main() { address := flag.String("address", "127.0.0.1", "The Chat Server Address.") - port := flag.String("port", "8888", "The Chat Server Port.") + port := flag.String("port", "5382", "The Chat Server Port.") burst := flag.Float64("burst", 0, "The probability of message burst. Works only if executed locally") delay := flag.Float64("delay", 0, "Message delay. Works only if executed locally")