Skip to content
Snippets Groups Projects
Commit 4111c63b authored by Ian Jackson's avatar Ian Jackson
Browse files

channel reactor: Add some commented-out debug for padding

parent 46885ac1
No related branches found
No related tags found
No related merge requests found
......@@ -185,6 +185,7 @@ impl<S: SleepProvider> Reactor<S> {
if let Some(l) = self.special_outgoing.next() {
// See reasoning below.
// eprintln!("PADDING - SENDING NEOGIATION: {:?}", &l);
self.padding_timer.as_mut().note_cell_sent();
return Some(l)
}
......@@ -210,7 +211,10 @@ impl<S: SleepProvider> Reactor<S> {
self.padding_timer.as_mut().note_cell_sent();
n
},
p = self.padding_timer.as_mut().next() => Some(p.into()),
p = self.padding_timer.as_mut().next() => {
// eprintln!("PADDING - SENDING PADDING: {:?}", &p);
Some(p.into())
},
}
}) => {
let (msg, sendable) = ret.map_err(codec_err_to_chan)?;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment