diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-24 00:45:28 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-24 00:45:28 +0200 |
commit | b344a0d4d87eabafa61acc8946643af395d81b8c (patch) | |
tree | 9ef5d0553843fd8bf697dc6d7b7d56e5372c6abf /server/src/network/mod.rs | |
parent | 1f5954da4c7e8af341c456093c5542e9ae201e3d (diff) | |
download | hurrycurry-b344a0d4d87eabafa61acc8946643af395d81b8c.tar hurrycurry-b344a0d4d87eabafa61acc8946643af395d81b8c.tar.bz2 hurrycurry-b344a0d4d87eabafa61acc8946643af395d81b8c.tar.zst |
optional upnp, mdns and register support
Diffstat (limited to 'server/src/network/mod.rs')
-rw-r--r-- | server/src/network/mod.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/src/network/mod.rs b/server/src/network/mod.rs index b7ffc15e..ce11082d 100644 --- a/server/src/network/mod.rs +++ b/server/src/network/mod.rs @@ -15,6 +15,9 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ +#[cfg(feature = "mdns")] +pub mod mdns; +#[cfg(feature = "register")] pub mod register; +#[cfg(feature = "upnp")] pub mod upnp; -pub mod mdns; |