You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privateval networkScope by setting("Network Scope", Direction.BOTH)
44
-
privateval packetScope by setting("Packet Scope", PacketType.ANY)
45
-
privateval inboundDelay by setting("Inbound Delay", 250L, 0L..5000L, 10L, unit ="ms") { networkScope !=Direction.OUTBOUND }
46
-
privateval outboundDelay by setting("Outbound Delay", 250L, 0L..5000L, 10L, unit ="ms") { networkScope !=Direction.INBOUND }
44
+
privateval mode by setting("Mode", Mode.Static, description ="How the delay is applied: Static queues packets until a flush; Pulse delays each packet individually.")
45
+
privateval networkScope by setting("Network Scope", Direction.Both, description ="Which direction(s) to affect: inbound (server → you), outbound (you → server), or both.")
46
+
privateval packetScope by setting("Packet Scope", PacketType.Any, description ="What packets to delay. Choose all packets or a specific packet type.")
47
+
privateval inboundDelay by setting("Inbound Delay", 250L, 0L..5000L, 10L, unit ="ms", description ="Time to delay packets received from the server before processing.") { networkScope !=Direction.Outbound }
48
+
privateval outboundDelay by setting("Outbound Delay", 250L, 0L..5000L, 10L, unit ="ms", description ="Time to delay packets sent to the server before sending.") { networkScope !=Direction.Inbound }
0 commit comments