Skip to content

LeonarddeR/rd_pipe-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RD Pipe is a library that offers a named pipe layer for Windows Remote Desktop Services Dynamic Virtual Channels. In short, RD Pipe allows you to transmit data over a RDS virtual channel by connecting to a named pipe. Data written to the named pipe is send over the virtual channel to the server, and data received from the server can be read from the named pipe.

Why this library

Microsoft has two sets of APIs for Dynamic Virtual Channels. De server APIs are relatively easi to implement, as they are based on basic file I/O. On the other hand, implementing the client APIs is much less trivial as it involves implementing a COM server. This implies a lot of overhead when done in languages that don't compile to native code. Therefore, RD Pipe implements the COM server part, exposing a named pipe instead that can be easily consumed in languages like C#, Python, etc.

Building from source

Building RD Pipe is straight forward when you are acustomed to development in the Rust language. If not, it is yet pretty simple, as you mainly have to follow the Rust installation instructions for Windows. After that, building RD Pipe is as easy as executing cargo build from the command line.

About

Windows Remote Desktop Services Dynamic Virtual Channel implementation using named pipes, written in Rust

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages