From aefe3683d3ff0d579e79f06ccdc7e408ae9b3a4a Mon Sep 17 00:00:00 2001 From: Lzzzt Date: Fri, 27 Oct 2023 21:25:57 +0800 Subject: Show File Size in Bytes Add a cli option that show file size in bytes rather than KB or MB, etc. --- src/config.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/config.rs') diff --git a/src/config.rs b/src/config.rs index 4404959..03d3f4b 100644 --- a/src/config.rs +++ b/src/config.rs @@ -158,6 +158,9 @@ pub struct MiniserveConfig { /// If enabled, respond to WebDAV requests (read-only). pub webdav_enabled: bool, + /// If enabled, will show in exact byte size of the file + pub show_size_in_byte: bool, + /// If set, use provided rustls config for TLS #[cfg(feature = "tls")] pub tls_rustls_config: Option, @@ -320,6 +323,7 @@ impl MiniserveConfig { webdav_enabled: args.enable_webdav, tls_rustls_config: tls_rustls_server_config, compress_response: args.compress_response, + show_size_in_byte: args.show_size_in_byte, }) } } -- cgit v1.2.3