Compare commits

..

No commits in common. "9218ae6daa4e8a87f8839bb8306dadb141750f68" and "8d87cc12c44ecdbb8f96f41cac2de7bf18077f55" have entirely different histories.

View File

@ -117,6 +117,7 @@ const (
PRT_ONELINE = 1 PRT_ONELINE = 1
PRT_NORESOLVE_USER = 2 PRT_NORESOLVE_USER = 2
PRT_TIMESTAMP = 4 PRT_TIMESTAMP = 4
) )
var ( var (
@ -142,7 +143,7 @@ type event struct {
// Abstraction of a record // Abstraction of a record
type Record interface { type Record interface {
GetType() uint8 GetType() uint8
//Length() // Length()
LoadFromBinary(rdr *bufio.Reader) error LoadFromBinary(rdr *bufio.Reader) error
Print(*os.File, string, int) Print(*os.File, string, int)
} }
@ -210,7 +211,7 @@ type Attribute64 struct {
*/ */
type ExecArg struct { type ExecArg struct {
Count uint32 Count uint32
//Text [AUDIT_MAX_ARGS][]byte //Text [AUDIT_MAX_ARGS][]byte
Text [][]byte Text [][]byte
} }