1
0
mirror of https://git.zx2c4.com/wireguard-go synced 2025-09-18 20:57:50 +02:00
wireguard-go/src/conn_default.go
Mathias Hall-Andersen eafa3df606 Added fwmark code
2017-08-25 14:53:23 +02:00

12 lines
118 B
Go

// +build !linux
package main
import (
"net"
)
func setFwmark(conn *net.UDPConn, value int) error {
return nil
}