|
@@ -7,6 +7,7 @@ import (
|
|
"log"
|
|
"log"
|
|
"os"
|
|
"os"
|
|
"os/signal"
|
|
"os/signal"
|
|
|
|
+ "runtime/pprof"
|
|
"strings"
|
|
"strings"
|
|
"syscall"
|
|
"syscall"
|
|
"time"
|
|
"time"
|
|
@@ -25,12 +26,13 @@ const (
|
|
var (
|
|
var (
|
|
version = "undefined"
|
|
version = "undefined"
|
|
|
|
|
|
- timeout = flag.Duration("timeout", 10*time.Second, "network operation timeout")
|
|
|
|
- idleTime = flag.Duration("idle-time", 90*time.Second, "max idle time for UDP session")
|
|
|
|
- pskHexOpt = flag.String("psk", "", "hex-encoded pre-shared key. Can be generated with genpsk subcommand")
|
|
|
|
- keyLength = flag.Uint("key-length", 16, "generate key with specified length")
|
|
|
|
- identity = flag.String("identity", "", "client identity sent to server")
|
|
|
|
- mtu = flag.Int("mtu", 1400, "MTU used for DTLS fragments")
|
|
|
|
|
|
+ timeout = flag.Duration("timeout", 10*time.Second, "network operation timeout")
|
|
|
|
+ idleTime = flag.Duration("idle-time", 90*time.Second, "max idle time for UDP session")
|
|
|
|
+ pskHexOpt = flag.String("psk", "", "hex-encoded pre-shared key. Can be generated with genpsk subcommand")
|
|
|
|
+ keyLength = flag.Uint("key-length", 16, "generate key with specified length")
|
|
|
|
+ identity = flag.String("identity", "", "client identity sent to server")
|
|
|
|
+ mtu = flag.Int("mtu", 1400, "MTU used for DTLS fragments")
|
|
|
|
+ cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file")
|
|
)
|
|
)
|
|
|
|
|
|
func usage() {
|
|
func usage() {
|
|
@@ -137,6 +139,15 @@ func run() int {
|
|
flag.Parse()
|
|
flag.Parse()
|
|
args := flag.Args()
|
|
args := flag.Args()
|
|
|
|
|
|
|
|
+ if *cpuprofile != "" {
|
|
|
|
+ f, err := os.Create(*cpuprofile)
|
|
|
|
+ if err != nil {
|
|
|
|
+ log.Fatal(err)
|
|
|
|
+ }
|
|
|
|
+ pprof.StartCPUProfile(f)
|
|
|
|
+ defer pprof.StopCPUProfile()
|
|
|
|
+ }
|
|
|
|
+
|
|
switch len(args) {
|
|
switch len(args) {
|
|
case 1:
|
|
case 1:
|
|
switch args[0] {
|
|
switch args[0] {
|