fix(handshake): make client struct data public

This commit is contained in:
Santiago Carmuega 2021-12-09 06:41:35 -03:00
parent 611611d063
commit 82bec59490

View file

@ -141,9 +141,9 @@ pub enum Output {
#[derive(Debug)]
pub struct Client {
state: State,
output: Output,
version_table: VersionTable,
pub state: State,
pub output: Output,
pub version_table: VersionTable,
}
impl Client {