From 987c880e01e9fe71001cee7cb6a155ff4b4c745f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Thu, 9 Mar 2023 22:16:57 +0100 Subject: [PATCH] udp: improve config comments for resend_buffer_max_len --- aquatic_udp/src/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aquatic_udp/src/config.rs b/aquatic_udp/src/config.rs index 03763e1..b805af0 100644 --- a/aquatic_udp/src/config.rs +++ b/aquatic_udp/src/config.rs @@ -99,6 +99,8 @@ pub struct NetworkConfig { /// Useful on operating systems that do not provide an udp send buffer, /// such as FreeBSD. Setting the value to zero disables resending /// functionality. + /// + /// Only active with mio backend. pub resend_buffer_max_len: usize, }