mirror of
https://github.com/bolkedebruin/rdpgw.git
synced 2026-03-27 22:46:37 +00:00
9 lines
149 B
Go
9 lines
149 B
Go
//go:build !windows
|
|
|
|
package protocol
|
|
|
|
// the fd arg to syscall.SetsockoptInt on Linix is of type int
|
|
func int64ToFd(n int64) int {
|
|
return int(n)
|
|
}
|