add ned test
This commit is contained in:
parent
6f1f8ca7f7
commit
180c3d189d
|
@ -4,6 +4,8 @@ import (
|
|||
"github.com/s-rah/go-ricochet/application"
|
||||
"github.com/s-rah/go-ricochet/utils"
|
||||
"log"
|
||||
// "time"
|
||||
"net/http"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
@ -15,6 +17,14 @@ func GeneratePrivateKey() (string, error) {
|
|||
return utils.PrivateKeyToString(privateKey), nil
|
||||
}
|
||||
|
||||
func TestNet() (ok bool, ex error) {
|
||||
_, err := http.Get("http://golang.org/")
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
return true, nil
|
||||
}
|
||||
|
||||
func EchoBot(privateKeyData string) {
|
||||
privateKey, err := utils.ParsePrivateKey([]byte(privateKeyData))
|
||||
|
||||
|
@ -24,6 +34,7 @@ func EchoBot(privateKeyData string) {
|
|||
|
||||
echobot := new(application.RicochetApplication)
|
||||
|
||||
log.Println("SetupOnion()...")
|
||||
l, err := application.SetupOnion("127.0.0.1:9051", "tcp4","", privateKey, 9878)
|
||||
//l, err := application.SetupOnion("/data/data/org.torproject.android/app_bin/control.txt", "unix","", privateKey, 9878)
|
||||
|
||||
|
|
Loading…
Reference in New Issue