mirror of https://github.com/subgraph/fw-daemon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
547 B
37 lines
547 B
7 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"log"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
var dbuso *dbusObjectP
|
||
|
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Starting up test units...")
|
||
|
|
||
|
_, err := newDbusServer()
|
||
|
if err != nil {
|
||
|
log.Fatal("Error:", err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
dbuso, err := newDbusObjectAdd()
|
||
|
if err != nil {
|
||
|
log.Fatal("Failed to connect to dbus system bus: %v", err)
|
||
|
}
|
||
|
|
||
|
res := CallAddTestVPC(dbuso, "udp", "10.0.0.1", 61921, "8.8.8.8", 53, "dnsthing.google.com")
|
||
|
fmt.Println("res =", res)
|
||
|
|
||
|
|
||
|
fmt.Println("Waiting until interrupted...")
|
||
|
|
||
|
for true {
|
||
|
time.Sleep(1 * time.Second)
|
||
|
}
|
||
|
|
||
|
}
|