2023-03-15 20:59:45 +08:00
|
|
|
//go:build with_embedded_tor && !(android || ios)
|
2022-08-21 00:59:49 +08:00
|
|
|
|
|
|
|
|
package outbound
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"berty.tech/go-libtor"
|
|
|
|
|
"github.com/cretz/bine/tor"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func newConfig() tor.StartConf {
|
|
|
|
|
return tor.StartConf{
|
|
|
|
|
ProcessCreator: libtor.Creator,
|
|
|
|
|
UseEmbeddedControlConn: true,
|
|
|
|
|
}
|
|
|
|
|
}
|