Fixed lint errors for struct size

This commit is contained in:
Ice3man543 2021-06-15 11:49:32 +05:30
parent dbb70c5acc
commit 8ea3f5d0c8
2 changed files with 6 additions and 4 deletions

3
.gitignore vendored
View File

@ -3,4 +3,5 @@ v2/cmd/nuclei/nuclei
.idea
integration_tests/integration-test
integration_tests/nuclei
v2/cmd/integration-test/integration-test
v2/cmd/integration-test/integration-test
bin

View File

@ -20,6 +20,7 @@ import (
// Client is a wrapped client for interactsh server.
type Client struct {
dotHostname string
// interactsh is a client for interactsh server.
interactsh *client.Client
// requests is a stored cache for interactsh-url->request-event data.
@ -27,13 +28,13 @@ type Client struct {
// interactions is a stored cache for interactsh-interaction->interactsh-url data
interactions *ccache.Cache
generated uint32 // decide to wait if we have a generated url
options *Options
matched bool
dotHostname string
eviction time.Duration
pollDuration time.Duration
cooldownDuration time.Duration
generated uint32 // decide to wait if we have a generated url
matched bool
}
var (