mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
Since this may create security vulnerabilities such as DNS amplification or abusing because the listener was exposed to the entire local network.
10 lines
223 B
Go
10 lines
223 B
Go
//go:build !windows && !darwin
|
|
|
|
package ctrld
|
|
|
|
// IsDesktopPlatform indicates if ctrld is running on a desktop platform,
|
|
// currently defined as macOS or Windows workstation.
|
|
func IsDesktopPlatform() bool {
|
|
return false
|
|
}
|