mirror of
https://git.zx2c4.com/wireguard-go
synced 2025-09-18 20:57:50 +02:00
12 lines
118 B
Go
12 lines
118 B
Go
// +build !linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func setFwmark(conn *net.UDPConn, value int) error {
|
|
return nil
|
|
}
|