Skip to content

Commit

Permalink
Update crates/ironrdp-web/src/session.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Benoît Cortier <[email protected]>
  • Loading branch information
irvingoujAtDevolution and CBenoit authored Sep 18, 2024
1 parent a53cc52 commit 629f963
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions crates/ironrdp-web/src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -887,15 +887,15 @@ async fn writer_task(rx: mpsc::UnboundedReceiver<Vec<u8>>, rdp_writer: WriteHalf
}
}

pub(crate) struct ConnectParams {
pub(crate) ws: WebSocket,
pub(crate) config: connector::Config,
pub(crate) proxy_auth_token: String,
pub(crate) destination: String,
pub(crate) pcb: Option<String>,
pub(crate) kdc_proxy_url: Option<String>,
pub(crate) clipboard_backend: Option<WasmClipboardBackend>,
pub(crate) use_display_control: bool,
struct ConnectParams {
ws: WebSocket,
config: connector::Config,
proxy_auth_token: String,
destination: String,
pcb: Option<String>,
kdc_proxy_url: Option<String>,
clipboard_backend: Option<WasmClipboardBackend>,
use_display_control: bool,
}

async fn connect(
Expand Down

0 comments on commit 629f963

Please sign in to comment.