Skip to content

Commit

Permalink
rave_rtsp: remove unused addr
Browse files Browse the repository at this point in the history
  • Loading branch information
gerwin3 committed Aug 26, 2023
1 parent 09a16d7 commit 43e40d4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/rave_rtsp/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ type FramedWrite = tokio_util::codec::FramedWrite<tokio::net::tcp::OwnedWriteHal
/// println!("{:?}", client.options().await.unwrap());
/// ```
pub struct Client {
addr: std::net::SocketAddr,
uri: Uri,
read: FramedRead,
write: FramedWrite,
Expand Down Expand Up @@ -84,7 +83,6 @@ impl Client {
let read = FramedRead::new(read, Codec::<AsClient>::new());
let write = FramedWrite::new(write, Codec::<AsClient>::new());
Ok(Self {
addr,
uri,
read,
write,
Expand Down

0 comments on commit 43e40d4

Please sign in to comment.