Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions converter/converter.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import (
)

type IDlConverterConfig struct {
HeaderLength int
EnableArrayLengthHeader bool
IsLittleEndian bool
LengthFieldLength int // should be 1,2,4 bytes
SchemaPath string
PaddingLength int // should be 1,2,4,8,16,32,64
HeaderLength int `json:"headerLength"`
EnableArrayLengthHeader bool `json:"enableArrayLengthHeader"`
IsLittleEndian bool `json:"isLittleEndian"`
LengthFieldLength int `json:"lengthFieldLength"` // should be 1,2,4 bytes
SchemaPath string `json:"schemaPath"`
PaddingLength int `json:"paddingLength"` // should be 1,2,4,8,16,32,64
}

type IDLConverter struct {
Expand Down
Loading