Development into Master #10

Merged
michael-bailey merged 102 commits from Development into master 2021-08-03 20:53:15 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 8aa499ab03 - Show all commits

View File

@ -61,9 +61,9 @@ impl Server {
let (sender, receiver) = unbounded();
Self {
name: Arc::new(name.to_string()),
address: Arc::new(address.to_string()),
author: Arc::new(author.to_string()),
name: name.to_string(),
address: address.to_string(),
author: author.to_string(),
connected_clients: Arc::new(Mutex::new(HashMap::new())),
thread_pool: ThreadPool::new(16),