Rust fun 17122020
2 unresolved threads
2 unresolved threads
Did some hacking with David and Alex. Here are the results!
Edited by George Kadianakis
Merge request reports
Activity
617 617 async fn handle_sendme(&mut self, hopnum: HopNum, msg: Sendme) -> Result<()> { 618 618 // No need to call "shutdown" on errors in this function; 619 619 // it's called from the reactor task and errors will propagate there. 620 let hop = self.hop_mut(hopnum).unwrap(); // XXXX risky 620 let hop = self.hop_mut(hopnum).ok_or(Error::CircProto( assigned to @nickm
617 617 async fn handle_sendme(&mut self, hopnum: HopNum, msg: Sendme) -> Result<()> { 618 618 // No need to call "shutdown" on errors in this function; 619 619 // it's called from the reactor task and errors will propagate there. 620 let hop = self.hop_mut(hopnum).unwrap(); // XXXX risky 620 let hop = self.hop_mut(hopnum).ok_or(Error::CircProto( 621 format!("Couldn't find {} hop", hopnum).into(),
Please register or sign in to reply