mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-28 22:25:07 +03:00
8 lines
274 B
Go
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
|
|
}
|