From d17f749914a7ffd83e2b638bcf7069bbc573d9f3 Mon Sep 17 00:00:00 2001 From: Naja Melan Date: Sat, 21 Mar 2020 16:46:51 +0100 Subject: [PATCH] doc: be precise about max message sizes. If preferred to avoid abbreviations, it could be called mebibytes. --- src/protocol/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/protocol/mod.rs b/src/protocol/mod.rs index 7aed59c..17e7bbb 100644 --- a/src/protocol/mod.rs +++ b/src/protocol/mod.rs @@ -34,12 +34,12 @@ pub struct WebSocketConfig { /// means here that the size of the queue is unlimited. The default value is the unlimited /// queue. pub max_send_queue: Option, - /// The maximum size of a message. `None` means no size limit. The default value is 64 megabytes + /// The maximum size of a message. `None` means no size limit. The default value is 64 MiB /// which should be reasonably big for all normal use-cases but small enough to prevent /// memory eating by a malicious user. pub max_message_size: Option, /// The maximum size of a single message frame. `None` means no size limit. The limit is for - /// frame payload NOT including the frame header. The default value is 16 megabytes which should + /// frame payload NOT including the frame header. The default value is 16 MiB which should /// be reasonably big for all normal use-cases but small enough to prevent memory eating /// by a malicious user. pub max_frame_size: Option,