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.
8 lines
190 B
Go
8 lines
190 B
Go
package ctrld
|
|
|
|
// IsDesktopPlatform indicates if ctrld is running on a desktop platform,
|
|
// currently defined as macOS or Windows workstation.
|
|
func IsDesktopPlatform() bool {
|
|
return true
|
|
}
|