aboutsummaryrefslogtreecommitdiff
path: root/hbak_common
diff options
context:
space:
mode:
authorHimbeerserverDE <himbeerserverde@gmail.com>2024-02-14 16:50:57 +0100
committerHimbeerserverDE <himbeerserverde@gmail.com>2024-02-14 16:50:57 +0100
commita4ba7aa7ae66c5073aacfe5b29be81dbf0949eb6 (patch)
treeed038364d62c79718eb09ab2f92aa240a9a307ea /hbak_common
parent07dc029d34743404b721353875148e98f9f6b393 (diff)
Revert "debug: print where TxError sending hangs"
This reverts commit 07dc029d34743404b721353875148e98f9f6b393.
Diffstat (limited to 'hbak_common')
-rw-r--r--hbak_common/src/conn.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/hbak_common/src/conn.rs b/hbak_common/src/conn.rs
index 19cd50b..e50d868 100644
--- a/hbak_common/src/conn.rs
+++ b/hbak_common/src/conn.rs
@@ -267,11 +267,8 @@ impl<P: Phase> StreamConn<P> {
.encrypt_next(plaintext.as_slice())?;
let mut w = self.stream_write.lock().unwrap();
- println!("[dbg] binser");
bincode::serialize_into(w.deref_mut(), &RawMessage(ciphertext))?;
- println!("[dbg] flush");
w.flush()?;
- println!("[dbg] done");
Ok(())
}