agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit 3765f8a515daa7b39cbb21e20e6e6b0befb6ae7c
parent 90a4f666fd75904f9bb834375d459cdb7401616a
Author: Johann150 <johann.galle@protonmail.com>
Date:   Fri, 17 Mar 2023 18:24:24 +0100

simplify conditional unix compilation

Diffstat:
Msrc/main.rs | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -32,9 +32,9 @@ use { url::{Host, Url}, }; -#[cfg(target_family = "unix")] +#[cfg(unix)] use std::os::unix::fs::FileTypeExt; -#[cfg(target_family = "unix")] +#[cfg(unix)] use tokio::net::{UnixListener, UnixStream}; static DEFAULT_PORT: u16 = 1965; @@ -101,7 +101,7 @@ fn main() { })) }; - #[cfg(target_family = "unix")] + #[cfg(unix)] for socketpath in &ARGS.sockets { let arc = mimetypes.clone(); @@ -191,7 +191,7 @@ fn args() -> Result<Args> { &format!("Address to listen on (default 0.0.0.0:{DEFAULT_PORT} and [::]:{DEFAULT_PORT}; multiple occurences means listening on multiple interfaces)"), "IP:PORT", ); - #[cfg(target_family = "unix")] + #[cfg(unix)] opts.optmulti( "", "socket",