Files
rdpgw/cmd/rdpgw/protocol/gateway_others.go
Andrew Heberle 2b9ec4a3f0 Allow signing downloaded RDP file (#156)
Implement signing of RDP files downloaded from web
2025-09-05 14:21:32 +02:00

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)
}