Skip to content

Commit

Permalink
unreliable-chat-client: setting BURST-LEN through client now works (#78)
Browse files Browse the repository at this point in the history
when trying to chance BURST-LEN within a client in the old code would not do anything, because the server does nothing in this case. I assume it was assumed that leaving case "BURST-LEN" empty would cause to do the same as DELAY-LEN but it does not. Now it does.

VU-net ID: lvo233
  • Loading branch information
alejandroFangrill14 authored May 14, 2024
1 parent 830aad9 commit 95f6222
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions unreliable_chat_check/BrokenChatServerLocal.go
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,7 @@ func handleSetSelect(message string, addr net.Addr, output BrokenMessageOutputSt
split := strings.Split(message, " ")
switch split[1] {
case "BURST-LEN":
handleSetRange(message, addr, output)
case "DELAY-LEN":
handleSetRange(message, addr, output)
default:
Expand Down

0 comments on commit 95f6222

Please sign in to comment.