From c0d2118a77d1e53d92105e43195cad2a856f2e8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Tue, 7 Jan 2020 12:44:29 +0000 Subject: [PATCH] Use fixed rate by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrien Gallouët --- mud.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mud.c b/mud.c index ac31bcc..99ddedc 100644 --- a/mud.c +++ b/mud.c @@ -643,6 +643,7 @@ mud_get_path(struct mud *mud, struct sockaddr_storage *local_addr, path->state = MUD_UP; path->conf.msg_timeout = MUD_MSG_TIMEOUT; + path->conf.fixed_rate = 1; return path; }