Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrUnsupportedFormat means this parser cannot decode the requested format. ErrUnsupportedFormat = errors.New("unsupported output format") // ErrInvalidOutput means contents could not be decoded for the requested format. ErrInvalidOutput = errors.New("invalid masscan output") )
Functions ¶
This section is empty.
Types ¶
type Format ¶
type Format string
Format represents a masscan output format in the parser layer.
const ( // FormatJSON is a JSON output format. FormatJSON Format = "json" // FormatXML is an XML output format. FormatXML Format = "xml" // FormatList is a list output format. FormatList Format = "list" // FormatGrepable is a grepable output format. FormatGrepable Format = "grepable" // FormatBinary is a binary output format. FormatBinary Format = "binary" // FormatUnknown means output format autodetection is required. FormatUnknown Format = "unknown" )
Click to show internal directories.
Click to hide internal directories.