Files
wireguard-go/src/conn_default.go
T

12 lines
116 B
Go
Raw Normal View History

2017-08-25 14:53:23 +02:00
// +build !linux
package main
import (
"net"
)
2017-08-27 15:41:00 +02:00
func setMark(conn *net.UDPConn, value int) error {
2017-08-25 14:53:23 +02:00
return nil
}