2022-08-21 00:59:49 +08:00
|
|
|
package option
|
|
|
|
|
|
|
|
|
|
type TorOutboundOptions struct {
|
2022-09-03 12:55:10 +08:00
|
|
|
DialerOptions
|
2022-08-21 00:59:49 +08:00
|
|
|
ExecutablePath string `json:"executable_path,omitempty"`
|
|
|
|
|
ExtraArgs []string `json:"extra_args,omitempty"`
|
|
|
|
|
DataDirectory string `json:"data_directory,omitempty"`
|
|
|
|
|
Options map[string]string `json:"torrc,omitempty"`
|
|
|
|
|
}
|