mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
13 lines
186 B
Go
13 lines
186 B
Go
|
package upnp
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
"os"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
dlog = log.New(os.Stderr, "upnp: ", log.Lmicroseconds|log.Lshortfile)
|
||
|
debug = strings.Contains(os.Getenv("STTRACE"), "upnp")
|
||
|
)
|