5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-04-03 22:23:49 +00:00
2018-12-07 19:56:04 -06:00

9 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
}