@@ -183,13 +183,6 @@ func (h *HepMsg) MarshalTo(dAtA []byte) (int, error) {
183
183
i += copy (dAtA [i :], h .NodePW )
184
184
}
185
185
186
- if h .Payload != nil {
187
- i += copy (dAtA [i :], []byte {0x00 , 0x00 , 0x00 , 0x0f })
188
- binary .BigEndian .PutUint16 (dAtA [i :], 6 + uint16 (len (h .Payload )))
189
- i += 2
190
- i += copy (dAtA [i :], h .Payload )
191
- }
192
-
193
186
if h .CID != nil {
194
187
i += copy (dAtA [i :], []byte {0x00 , 0x00 , 0x00 , 0x11 })
195
188
binary .BigEndian .PutUint16 (dAtA [i :], 6 + uint16 (len (h .CID )))
@@ -208,6 +201,13 @@ func (h *HepMsg) MarshalTo(dAtA []byte) (int, error) {
208
201
i += copy (dAtA [i :], h .NodeName )
209
202
}
210
203
204
+ if h .Payload != nil {
205
+ i += copy (dAtA [i :], []byte {0x00 , 0x00 , 0x00 , 0x0f })
206
+ binary .BigEndian .PutUint16 (dAtA [i :], 6 + uint16 (len (h .Payload )))
207
+ i += 2
208
+ i += copy (dAtA [i :], h .Payload )
209
+ }
210
+
211
211
return i , nil
212
212
}
213
213
@@ -230,16 +230,19 @@ func (h *HepMsg) Size() (n int) {
230
230
if h .NodePW != "" {
231
231
n += 4 + 2 + len (h .NodePW ) // len(vendor) + len(chunk) + len(NodePW)
232
232
}
233
- if h .Payload != nil {
234
- n += 4 + 2 + len (h .Payload ) // len(vendor) + len(chunk) + len(Payload)
235
- }
233
+
236
234
if h .CID != nil {
237
235
n += 4 + 2 + len (h .CID ) // len(vendor) + len(chunk) + len(CID)
238
236
}
239
237
n += 4 + 2 + 2 // len(vendor) + len(chunk) + len(Vlan)
240
238
if h .NodeName != "" {
241
239
n += 4 + 2 + len (h .NodeName ) // len(vendor) + len(chunk) + len(NodeName)
242
240
}
241
+
242
+ if h .Payload != nil {
243
+ n += 4 + 2 + len (h .Payload ) // len(vendor) + len(chunk) + len(Payload)
244
+ }
245
+
243
246
return n
244
247
}
245
248
0 commit comments