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 4 deletions
Showing only changes of commit 49d3afd11f - Show all commits

View File

@ -11,14 +11,13 @@ use std::{
io,
};
use crossbeam::{
use crossbeam_channel::{
Sender,
Receiver,
TryRecvError,
unbounded
};
use openssl::rsa::Rsa;
use log::info;
use crate::{
@ -129,7 +128,7 @@ impl Client {
}
},
Err(_) => {
// no data was read
// No data was read
},
}
@ -172,7 +171,7 @@ impl Client {
}
},
/*no data available yet*/
/*No data available yet*/
Err(TryRecvError::Empty) => {},
_ => {},
}