Skip to content

Commit

Permalink
ReleaseContext and refactor handle_scard_call (#33434)
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaiah Becker-Mayer authored Oct 17, 2023
1 parent 8bd5007 commit 567688b
Show file tree
Hide file tree
Showing 5 changed files with 208 additions and 106 deletions.
144 changes: 107 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions lib/srv/desktop/rdp/rdpclient/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,24 +35,24 @@ x509-parser = "0.14"
sspi = { version = "0.10.1", features = ["network_client", "dns_resolver"] }
static_init = "1.0.3"

ironrdp-connector = { git = "https://github.com/Devolutions/IronRDP", rev = "8b5cdc914d66acd813a90749319f830f61a99af2" }
ironrdp-tls = { git = "https://github.com/Devolutions/IronRDP", rev = "8b5cdc914d66acd813a90749319f830f61a99af2" }
ironrdp-session = { git = "https://github.com/Devolutions/IronRDP", rev = "8b5cdc914d66acd813a90749319f830f61a99af2" }
ironrdp-pdu = { git = "https://github.com/Devolutions/IronRDP", rev = "8b5cdc914d66acd813a90749319f830f61a99af2" }
ironrdp-tokio = { git = "https://github.com/Devolutions/IronRDP", rev = "8b5cdc914d66acd813a90749319f830f61a99af2" }
ironrdp-rdpsnd = { git = "https://github.com/Devolutions/IronRDP", rev = "8b5cdc914d66acd813a90749319f830f61a99af2" }
ironrdp-rdpdr = { git = "https://github.com/Devolutions/IronRDP", rev = "8b5cdc914d66acd813a90749319f830f61a99af2" }
ironrdp-svc = { git = "https://github.com/Devolutions/IronRDP", rev = "8b5cdc914d66acd813a90749319f830f61a99af2" }
# ironrdp-connector = { git = "https://github.com/Devolutions/IronRDP", rev = "10612cda8d1bd35368d797d1f4cddf4fe52969a7" }
# ironrdp-tls = { git = "https://github.com/Devolutions/IronRDP", rev = "10612cda8d1bd35368d797d1f4cddf4fe52969a7" }
# ironrdp-session = { git = "https://github.com/Devolutions/IronRDP", rev = "10612cda8d1bd35368d797d1f4cddf4fe52969a7" }
# ironrdp-pdu = { git = "https://github.com/Devolutions/IronRDP", rev = "10612cda8d1bd35368d797d1f4cddf4fe52969a7" }
# ironrdp-tokio = { git = "https://github.com/Devolutions/IronRDP", rev = "10612cda8d1bd35368d797d1f4cddf4fe52969a7" }
# ironrdp-rdpsnd = { git = "https://github.com/Devolutions/IronRDP", rev = "10612cda8d1bd35368d797d1f4cddf4fe52969a7" }
# ironrdp-rdpdr = { git = "https://github.com/Devolutions/IronRDP", rev = "10612cda8d1bd35368d797d1f4cddf4fe52969a7" }
# ironrdp-svc = { git = "https://github.com/Devolutions/IronRDP", rev = "10612cda8d1bd35368d797d1f4cddf4fe52969a7" }

# Uncomment the following lines to use local crates instead of the ones from github
# ironrdp-connector = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-connector" }
# ironrdp-tls = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-tls" }
# ironrdp-session = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-session" }
# ironrdp-pdu = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-pdu" }
# ironrdp-tokio = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-tokio" }
# ironrdp-rdpsnd = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-rdpsnd" }
# ironrdp-rdpdr = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-rdpdr" }
# ironrdp-svc = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-svc" }
ironrdp-connector = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-connector" }
ironrdp-tls = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-tls" }
ironrdp-session = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-session" }
ironrdp-pdu = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-pdu" }
ironrdp-tokio = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-tokio" }
ironrdp-rdpsnd = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-rdpsnd" }
ironrdp-rdpdr = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-rdpdr" }
ironrdp-svc = { path = "/Users/ibeckermayer/Devolutions/IronRDP/crates/ironrdp-svc" }

# Uncomment the following lines to use local crates instead of the ones from github
# ironrdp-connector = { path = "/Users/hesperus/work/IronRDP/crates/ironrdp-connector" }
Expand Down
Loading

0 comments on commit 567688b

Please sign in to comment.