replace deprecated re-handshake feature with session-resumption-enabled property set

This commit is contained in:
yggverse 2024-12-01 02:57:21 +02:00
parent 911fb13a69
commit 3cc9fcd86b
5 changed files with 68 additions and 259 deletions

View file

@ -9,7 +9,6 @@ pub enum Error {
OutputStream(glib::Error),
Request(glib::Error),
Response(crate::client::response::Error),
Session(crate::client::session::Error),
}
impl Display for Error {
@ -36,9 +35,6 @@ impl Display for Error {
Self::Response(e) => {
write!(f, "Response error: {e}")
}
Self::Session(e) => {
write!(f, "Session error: {e}")
}
}
}
}