Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Decoder = &decoder.StreamDecoder{ Type: types.Type_NC_HTTP, Name: "HTTP", Description: "The Hypertext Transfer Protocol is powering the world wide web", PostInit: func(sd *decoder.StreamDecoder) error { var err error httpLog, _, err = logging.InitZapLogger( decoderconfig.Instance.Out, "http", decoderconfig.Instance.Debug, ) return err }, CanDecode: func(client, server []byte) bool { return containsHTTPProtocolName(server) && containsHTTPMethod(client) }, DeInit: func(sd *decoder.StreamDecoder) error { return httpLog.Sync() }, Factory: &httpReader{}, Typ: core.All, }
Decoder for protocol analysis and writing audit records to disk.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.