yggdrasil-go/src/yggdrasil/config/tor.go
2018-04-26 10:26:10 -04:00

8 lines
274 B
Go

package config
// TorConfig is the configuration structure for Tor Proxy related values
type TorConfig struct {
OnionKeyfile string // hidden service private key for ADD_ONION (currently unimplemented)
ControlAddr string // tor control port address
Enabled bool
}