aboutsummaryrefslogtreecommitdiff
path: root/trunks.go
diff options
context:
space:
mode:
Diffstat (limited to 'trunks.go')
-rw-r--r--trunks.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/trunks.go b/trunks.go
index 2e5bcd5..34886c1 100644
--- a/trunks.go
+++ b/trunks.go
@@ -47,13 +47,14 @@ const (
//
type Trunks struct {
Env *Environment
- Httpd *libhttp.Server // The HTTP server.
- Wsd *websocket.Server // The WebSocket server.
+ Httpd *libhttp.Server
+ Wsd *websocket.Server
- targets []*Target
attackq chan *RunRequest
cancelq chan bool
errq chan error
+
+ targets []*Target
}
//