diff --git a/rtc-sctp/src/endpoint/endpoint_test.rs b/rtc-sctp/src/endpoint/endpoint_test.rs index 4fa3260..92c4556 100644 --- a/rtc-sctp/src/endpoint/endpoint_test.rs +++ b/rtc-sctp/src/endpoint/endpoint_test.rs @@ -2248,7 +2248,7 @@ fn test_old_rtx_on_regular_acks() -> Result<()> { // Send 20 packet at a regular interval that is < RTO for i in 0..20u32 { - println!("sending packet {}", i); + //println!("sending packet {}", i); sbuf[0..4].copy_from_slice(&i.to_be_bytes()); let n = pair.client_stream(client_ch, si)?.write_sctp( &Bytes::from(sbuf.clone()), @@ -2281,7 +2281,7 @@ fn test_old_rtx_on_regular_acks() -> Result<()> { .get(&si) .unwrap() .reassembly_queue; - println!("q.is_readable()={}", q.is_readable()); + //println!("q.is_readable()={}", q.is_readable()); assert!(q.is_readable(), "should be readable at {}", i); } diff --git a/rtc-sdp/src/description/session.rs b/rtc-sdp/src/description/session.rs index b491ae0..c20a20c 100644 --- a/rtc-sdp/src/description/session.rs +++ b/rtc-sdp/src/description/session.rs @@ -512,7 +512,7 @@ impl SessionDescription { /// description as opposed to the session description, the states are marked /// with an asterisk ("a*", "k*"). /// - /// ```ignore + /// ```text /// +--------+----+-------+----+-----+----+-----+---+----+----+---+---+-----+---+---+----+---+----+ /// | STATES | a* | a*,k* | a | a,k | b | b,c | e | i | m | o | p | r,t | s | t | u | v | z | /// +--------+----+-------+----+-----+----+-----+---+----+----+---+---+-----+---+---+----+---+----+ diff --git a/rtc-turn/src/client/mod.rs b/rtc-turn/src/client/mod.rs index a261ba7..f35e545 100644 --- a/rtc-turn/src/client/mod.rs +++ b/rtc-turn/src/client/mod.rs @@ -1,4 +1,4 @@ -/*#[cfg(test)] +/*TODO:#[cfg(test)] mod client_test; */ pub mod binding; diff --git a/rtc-turn/src/proto/evenport.rs b/rtc-turn/src/proto/evenport.rs index 3cea809..7e33883 100644 --- a/rtc-turn/src/proto/evenport.rs +++ b/rtc-turn/src/proto/evenport.rs @@ -34,7 +34,7 @@ impl fmt::Display for EvenPort { } const EVEN_PORT_SIZE: usize = 1; -const FIRST_BIT_SET: u8 = 0b10000000; //FIXME? (1 << 8) - 1; +const FIRST_BIT_SET: u8 = 0b10000000; impl Setter for EvenPort { // AddTo adds EVEN-PORT to message.