mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
- Add ServerRDPAllowed field to daemon proto, EngineConfig, and profile config - Add --allow-server-rdp flag to `netbird up` (opt-in, defaults to false) - Wire RDP server start/stop in engine based on the flag - Reuse SSH ACL (SSHAuth proto) for RDP authorization via sshauth.Authorizer - Register/unregister credential provider COM DLL dynamically when flag is toggled - Ship DLL alongside netbird.exe, register via regsvr32 at runtime (not install time) - Update SetConfig tests to cover the new field https://claude.ai/code/session_01C38bCDyYzLgxYLVwJkcUng
14 lines
288 B
Go
14 lines
288 B
Go
//go:build !windows
|
|
|
|
package server
|
|
|
|
// RegisterCredentialProvider is a no-op on non-Windows platforms.
|
|
func RegisterCredentialProvider() error {
|
|
return nil
|
|
}
|
|
|
|
// UnregisterCredentialProvider is a no-op on non-Windows platforms.
|
|
func UnregisterCredentialProvider() error {
|
|
return nil
|
|
}
|