mirror of
https://github.com/apernet/OpenGFW.git
synced 2025-04-19 19:39:13 +08:00
10 lines
138 B
Go
10 lines
138 B
Go
package tor
|
|
|
|
import "net"
|
|
|
|
type TorDirectory interface {
|
|
Init() error
|
|
Add(ip net.IP, port uint16)
|
|
Query(ip net.IP, port uint16) bool
|
|
}
|