You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/xml/models.go
+60-7Lines changed: 60 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,12 @@ type ProtocolValue struct {
53
53
}
54
54
55
55
typeProtocolInstructionstruct {
56
+
// XMLName is the XML element name of this instruction.
56
57
XMLName xml.Name
58
+
// IsChunked is True if this instruction appears within a "chunked" section
59
+
IsChunkedbool
60
+
// ReferencedBy is the name of the instruction that references this instruction. This is only set for length instructions which are referenced by another instruction.
61
+
ReferencedBy*string
57
62
58
63
// ProtocolField properties
59
64
Name*string`xml:"name,attr"`
@@ -87,6 +92,8 @@ type ProtocolInstruction struct {
0 commit comments