bine/tor/listen.go

13 lines
165 B
Go
Raw Normal View History

2018-05-14 18:11:18 +00:00
package tor
import "net"
type OnionConf struct {
Port int
TargetPort int
}
func (t *Tor) Listen(conf *OnionConf) (net.Listener, error) {
panic("TODO")
}