Skip to content

Commit

Permalink
Handle storing up and downstream bps as u32
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtread committed Sep 26, 2023
1 parent 5fa17ea commit 8d62bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/session/models/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ pub enum InstanceNet {
pub struct QosNetworkData {
/// Downstream bits per second
#[tdf(tag = "DBPS")]
pub dbps: u16,
pub dbps: u32,
/// Natt type
#[tdf(tag = "NATT")]
pub natt: NatType,
/// Upstream bits per second
#[tdf(tag = "UBPS")]
pub ubps: u16,
pub ubps: u32,
}

//
Expand Down

0 comments on commit 8d62bdc

Please sign in to comment.