Add tor outbound

This commit is contained in:
世界 2022-08-21 00:59:49 +08:00
parent bcefe8716f
commit e4cece6095
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
18 changed files with 524 additions and 16 deletions

9
option/tor.go Normal file
View file

@ -0,0 +1,9 @@
package option
type TorOutboundOptions struct {
OutboundDialerOptions
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"`
}