diff options
| author | Fuwn <[email protected]> | 2021-05-23 14:10:13 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-23 14:10:13 -0700 |
| commit | 5857cd1c3279421ecf417edde488b5694fa6b3e0 (patch) | |
| tree | 0ca6bd9db2db3149d72ee6d96f032acbf9a2de13 /crates/whirl_server/src/distributor.rs | |
| parent | docs(global): more documentation (diff) | |
| download | whirl-5857cd1c3279421ecf417edde488b5694fa6b3e0.tar.xz whirl-5857cd1c3279421ecf417edde488b5694fa6b3e0.zip | |
docs(server): minor doc changes
Diffstat (limited to 'crates/whirl_server/src/distributor.rs')
| -rw-r--r-- | crates/whirl_server/src/distributor.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/whirl_server/src/distributor.rs b/crates/whirl_server/src/distributor.rs index 0d99c66..3aae901 100644 --- a/crates/whirl_server/src/distributor.rs +++ b/crates/whirl_server/src/distributor.rs @@ -1,15 +1,15 @@ // Copyleft (ɔ) 2021-2021 The Whirlsplash Collective // SPDX-License-Identifier: GPL-3.0-only -//! The distributor functions as bare-minimal +//! The Distributor functions as bare-minimal //! [AutoServer](http://dev.worlds.net/private/GammaDocs/WorldServer.html#AutoServer). //! -//! It intercepts a client and distributes it to a +//! The Distributor intercepts a client on initial connection and distributes it +//! to a //! [RoomServer](http://dev.worlds.net/private/GammaDocs/WorldServer.html#RoomServer). //! -//! This is not meant to be a high performant section of code as the distributor -//! is only meant to handle the initial and brief session initialization of the -//! client. +//! This is not meant to be a high focus module as the Distributor is only meant +//! to handle the initial and brief session initialization of the client. use std::{error::Error, net::SocketAddr, sync::Arc}; |