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.
51 lines
928 B
51 lines
928 B
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("Looping until interrupted...")
|
|
|
|
for true {
|
|
result := CallRunDebugCmd(dbuso, "monitorfds", "")
|
|
|
|
if result == "" {
|
|
fmt.Println("Error: could not read monitored FDs information from SGFW.")
|
|
} else {
|
|
fmt.Println(result)
|
|
}
|
|
|
|
result = CallRunDebugCmd(dbuso, "listpending", "")
|
|
|
|
if result == "" {
|
|
fmt.Println("Error: could not read pending queue(s) information from SGFW.")
|
|
} else {
|
|
fmt.Println(result)
|
|
}
|
|
|
|
time.Sleep(5 * time.Second)
|
|
}
|
|
|
|
}
|