Fix Wake-on-LAN: Implement custom WOL with OS-specific broadcast support
This commit is contained in:
21
internal/wol/enable_broadcast_windows.go
Normal file
21
internal/wol/enable_broadcast_windows.go
Normal file
@@ -0,0 +1,21 @@
|
||||
//go:build windows
|
||||
|
||||
package wol
|
||||
|
||||
import (
|
||||
"net"
|
||||
|
||||
"golang.org/x/sys/windows"
|
||||
)
|
||||
|
||||
func enableBroadcast(conn *net.UDPConn, debug bool) error {
|
||||
raw, err := conn.SyscallConn()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
var setErr error
|
||||
raw.Control(func(fd uintptr) {
|
||||
setErr = windows.SetsockoptInt(windows.Handle(fd), windows.SOL_SOCKET, windows.SO_BROADCAST, 1)
|
||||
})
|
||||
return setErr
|
||||
}
|
||||
Reference in New Issue
Block a user