@@ -31,6 +31,10 @@ const (
31
31
CID = 17 // Chunk 0x0011 Correlation ID
32
32
Vlan = 18 // Chunk 0x0012 VLAN
33
33
NodeName = 19 // Chunk 0x0013 NodeName
34
+ TCPFlag = 23 // Chunk 0x0017 TCP Flags
35
+ IPTos = 24 // Chunk 0x0018 IP TOS
36
+ Mos = 32 // Chunk 0x0020 MOS
37
+
34
38
)
35
39
36
40
// HepMsg represents a parsed HEP packet
@@ -50,6 +54,9 @@ type HepMsg struct {
50
54
CID []byte
51
55
Vlan uint16
52
56
NodeName string
57
+ Mos uint16
58
+ TCPFlag uint8
59
+ IPTos uint8
53
60
}
54
61
55
62
// EncodeHEP creates the HEP Packet which
@@ -72,6 +79,9 @@ func EncodeHEP(h *decoder.Packet) (hepMsg []byte, err error) {
72
79
CID : h .CID ,
73
80
Vlan : h .Vlan ,
74
81
NodeName : config .Cfg .HepNodeName ,
82
+ Mos : h .Mos ,
83
+ TCPFlag : h .TCPFlag ,
84
+ IPTos : h .IPTos ,
75
85
}
76
86
hepMsg , err = hep .Marshal ()
77
87
} else {
@@ -201,6 +211,24 @@ func (h *HepMsg) MarshalTo(dAtA []byte) (int, error) {
201
211
i += copy (dAtA [i :], h .NodeName )
202
212
}
203
213
214
+ if h .TCPFlag > 0 {
215
+ i += copy (dAtA [i :], []byte {0x00 , 0x00 , 0x00 , 0x17 , 0x00 , 0x07 })
216
+ dAtA [i ] = h .TCPFlag
217
+ i ++
218
+ }
219
+
220
+ if h .IPTos > 0 {
221
+ i += copy (dAtA [i :], []byte {0x00 , 0x00 , 0x00 , 0x18 , 0x00 , 0x07 })
222
+ dAtA [i ] = h .IPTos
223
+ i ++
224
+ }
225
+
226
+ if h .Mos > 0 {
227
+ i += copy (dAtA [i :], []byte {0x00 , 0x00 , 0x00 , 0x20 , 0x00 , 0x08 })
228
+ binary .BigEndian .PutUint16 (dAtA [i :], h .Mos )
229
+ i += 2
230
+ }
231
+
204
232
if h .Payload != nil {
205
233
i += copy (dAtA [i :], []byte {0x00 , 0x00 , 0x00 , 0x0f })
206
234
binary .BigEndian .PutUint16 (dAtA [i :], 6 + uint16 (len (h .Payload )))
@@ -239,6 +267,18 @@ func (h *HepMsg) Size() (n int) {
239
267
n += 4 + 2 + len (h .NodeName ) // len(vendor) + len(chunk) + len(NodeName)
240
268
}
241
269
270
+ if h .TCPFlag > 0 {
271
+ n += 4 + 2 + 1 // len(vendor) + len(chunk) + len(TCPFlag)
272
+ }
273
+
274
+ if h .IPTos > 0 {
275
+ n += 4 + 2 + 1 // len(vendor) + len(chunk) + len(IPTos)
276
+ }
277
+
278
+ if h .Mos > 0 {
279
+ n += 4 + 2 + 2 // len(vendor) + len(chunk) + len(Mos)
280
+ }
281
+
242
282
if h .Payload != nil {
243
283
n += 4 + 2 + len (h .Payload ) // len(vendor) + len(chunk) + len(Payload)
244
284
}
@@ -328,6 +368,12 @@ func (h *HepMsg) parseHEP(packet []byte) error {
328
368
h .CID = chunkBody
329
369
case Vlan :
330
370
h .Vlan = binary .BigEndian .Uint16 (chunkBody )
371
+ case Mos :
372
+ h .Mos = binary .BigEndian .Uint16 (chunkBody )
373
+ case TCPFlag :
374
+ h .TCPFlag = chunkBody [0 ]
375
+ case IPTos :
376
+ h .IPTos = chunkBody [0 ]
331
377
case NodeName :
332
378
h .NodeName = string (chunkBody )
333
379
default :
@@ -354,7 +400,10 @@ func (h *HepMsg) String() string {
354
400
`NodeID:` + fmt .Sprintf ("%v" , h .NodeID ) + `,` ,
355
401
`NodePW:` + fmt .Sprintf ("%s" , h .NodePW ) + `,` ,
356
402
`CID:` + fmt .Sprintf ("%s" , h .CID ) + `,` ,
357
- `Vlan:` + fmt .Sprintf ("%v" , h .Vlan ),
403
+ `Vlan:` + fmt .Sprintf ("%v" , h .Vlan ) + `,` ,
404
+ `Mos:` + fmt .Sprintf ("%v" , h .Mos ) + `,` ,
405
+ `IPTos:` + fmt .Sprintf ("%v" , h .IPTos ) + `,` ,
406
+ `TCPFlags:` + fmt .Sprintf ("%v" , h .TCPFlag ),
358
407
`}` ,
359
408
}, "" )
360
409
return s + " with Payload:\n " + fmt .Sprintf ("%s" , string (h .Payload ))
0 commit comments