diff options
author | metamuffin <yvchraiqi@protonmail.com> | 2022-08-18 11:40:06 +0200 |
---|---|---|
committer | metamuffin <yvchraiqi@protonmail.com> | 2022-08-18 11:40:06 +0200 |
commit | 592864de182dfeef8c639cfab6902e385a7c4595 (patch) | |
tree | 1298b75274be8cb07a678fb87aedf644f12ad544 /karld/src/interface/mod.rs | |
parent | cafa1056b77251e8ddd2bc3d062d37549eff978a (diff) | |
download | karlender-592864de182dfeef8c639cfab6902e385a7c4595.tar karlender-592864de182dfeef8c639cfab6902e385a7c4595.tar.bz2 karlender-592864de182dfeef8c639cfab6902e385a7c4595.tar.zst |
refactor networking
Diffstat (limited to 'karld/src/interface/mod.rs')
-rw-r--r-- | karld/src/interface/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/karld/src/interface/mod.rs b/karld/src/interface/mod.rs index 3c465d4..3a0c45e 100644 --- a/karld/src/interface/mod.rs +++ b/karld/src/interface/mod.rs @@ -21,5 +21,7 @@ pub fn start() { #[cfg(not(feature = "websocket"))] #[cfg(not(feature = "unix"))] + #[cfg(not(feature = "tcp"))] + #[cfg(not(feature = "stdio"))] log::warn!("no interfaces enabled, daemon will be inaccesssible") } |