Skip to content

Commit a4a81a1

Browse files
committed
fix(server): re-export CredentialValidator from crate root
Devolutions#1270 (wildcard cleanup) replaced `pub use server::*` with an explicit re-export list. This PR predates that change, so without an update the trait would be defined in server.rs but unreachable from downstream consumers via `ironrdp_server::CredentialValidator`. Adds CredentialValidator to the explicit list in lib.rs.
1 parent fe37ac3 commit a4a81a1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • crates/ironrdp-server/src

crates/ironrdp-server/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ pub use handler::{KeyboardEvent, MouseEvent, RdpServerInputHandler};
3333
#[cfg(feature = "helper")]
3434
pub use helper::TlsIdentityCtx;
3535
pub use server::{
36-
ConnectionHandler, Credentials, PostConnectionAction, RdpServer, RdpServerOptions, RdpServerSecurity, ServerEvent,
37-
ServerEventSender,
36+
ConnectionHandler, CredentialValidator, Credentials, PostConnectionAction, RdpServer, RdpServerOptions,
37+
RdpServerSecurity, ServerEvent, ServerEventSender,
3838
};
3939
pub use sound::{RdpsndServerHandler, RdpsndServerMessage, SoundServerFactory};
4040

0 commit comments

Comments
 (0)