Skip to content

Commit

Permalink
dscp default
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Feb 20, 2024
1 parent c5eabe7 commit d566188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neqo-common/src/udp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@ mod tests {

sleep(Duration::from_millis(100)).await;

// let tos_tx = IpTos::from((IpTosDscp::Le, IpTosEcn::Ce));
let tos_tx = IpTos::from((IpTosDscp::default(), IpTosEcn::Ce));
let datagram = Datagram::new(
sender.local_addr()?,
receiver.local_addr()?,
Default::default(),
tos_tx,
None,
"Hello, world!".as_bytes().to_vec(),
);
Expand Down

0 comments on commit d566188

Please sign in to comment.