mirror of
https://github.com/inverse-inc/upnp.git
synced 2025-12-24 12:12:37 +08:00
12 lines
121 B
Go
12 lines
121 B
Go
// +build windows darwin
|
|
|
|
package upnp
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func setTTL(conn *net.UDPConn, ttl int) error {
|
|
return nil
|
|
}
|