IronRDP/crates/ironrdp-server
devolutionsbot 9292988a88
chore(release): prepare for publishing (#624)
Co-authored-by: Benoît Cortier <3809077+CBenoit@users.noreply.github.com>
2024-12-17 18:18:10 +00:00
..
src feat(server): make TlsIdentityCtx accept PEM files (#623) 2024-12-17 10:50:39 -05:00
Cargo.toml chore(release): prepare for publishing (#624) 2024-12-17 18:18:10 +00:00
CHANGELOG.md chore(release): prepare for publishing (#624) 2024-12-17 18:18:10 +00:00
LICENSE-APACHE chore: symlinks to license files in packages (#604) 2024-12-11 08:13:26 -05:00
LICENSE-MIT chore: symlinks to license files in packages (#604) 2024-12-11 08:13:26 -05:00
README.md docs: add project links to READMEs for consistency 2024-10-29 19:14:20 +09:00

IronRDP Server

Extendable skeleton for implementing custom RDP servers.

For now, it requires the Tokio runtime.


The server currently supports:

Security

  • Enhanced RDP Security with TLS External Security Protocols (TLS 1.2 and TLS 1.3)

Input

  • FastPath input events
  • x224 input events and disconnect

Codecs

  • bitmap display updates with RDP 6.0 compression

Custom logic for your RDP server can be added by implementing these traits:

  • RdpServerInputHandler - callbacks used when the server receives input events from a client
  • RdpServerDisplay - notifies the server of display updates

This crate is part of the IronRDP project.