Added fwmark code

This commit is contained in:
Mathias Hall-Andersen
2017-08-25 14:53:23 +02:00
parent 4986cfe78b
commit eafa3df606
6 changed files with 75 additions and 21 deletions

11
src/conn_default.go Normal file
View File

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