11 lines
201 B
Go
11 lines
201 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
// just have this stub to allow building on Linux
|
||
|
func setupPortForward(ip, port string) {
|
||
|
log.Print("Port forwarding not currently implemented for Linux/iptables")
|
||
|
}
|