Skip to content

Commit 312a3a7

Browse files
committed
fixed size and mos for hep
1 parent 8ec6d59 commit 312a3a7

File tree

2 files changed

+53
-1
lines changed

2 files changed

+53
-1
lines changed

decoder/decoder.go

+3
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ type Packet struct {
107107
Payload []byte
108108
CID []byte
109109
Vlan uint16
110+
Mos uint16
111+
TCPFlag uint8
112+
IPTos uint8
110113
}
111114

112115
// HEP chuncks

publish/marshal.go

+50-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ const (
3131
CID = 17 // Chunk 0x0011 Correlation ID
3232
Vlan = 18 // Chunk 0x0012 VLAN
3333
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+
3438
)
3539

3640
// HepMsg represents a parsed HEP packet
@@ -50,6 +54,9 @@ type HepMsg struct {
5054
CID []byte
5155
Vlan uint16
5256
NodeName string
57+
Mos uint16
58+
TCPFlag uint8
59+
IPTos uint8
5360
}
5461

5562
// EncodeHEP creates the HEP Packet which
@@ -72,6 +79,9 @@ func EncodeHEP(h *decoder.Packet) (hepMsg []byte, err error) {
7279
CID: h.CID,
7380
Vlan: h.Vlan,
7481
NodeName: config.Cfg.HepNodeName,
82+
Mos: h.Mos,
83+
TCPFlag: h.TCPFlag,
84+
IPTos: h.IPTos,
7585
}
7686
hepMsg, err = hep.Marshal()
7787
} else {
@@ -201,6 +211,24 @@ func (h *HepMsg) MarshalTo(dAtA []byte) (int, error) {
201211
i += copy(dAtA[i:], h.NodeName)
202212
}
203213

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+
204232
if h.Payload != nil {
205233
i += copy(dAtA[i:], []byte{0x00, 0x00, 0x00, 0x0f})
206234
binary.BigEndian.PutUint16(dAtA[i:], 6+uint16(len(h.Payload)))
@@ -239,6 +267,18 @@ func (h *HepMsg) Size() (n int) {
239267
n += 4 + 2 + len(h.NodeName) // len(vendor) + len(chunk) + len(NodeName)
240268
}
241269

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+
242282
if h.Payload != nil {
243283
n += 4 + 2 + len(h.Payload) // len(vendor) + len(chunk) + len(Payload)
244284
}
@@ -328,6 +368,12 @@ func (h *HepMsg) parseHEP(packet []byte) error {
328368
h.CID = chunkBody
329369
case Vlan:
330370
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]
331377
case NodeName:
332378
h.NodeName = string(chunkBody)
333379
default:
@@ -354,7 +400,10 @@ func (h *HepMsg) String() string {
354400
`NodeID:` + fmt.Sprintf("%v", h.NodeID) + `,`,
355401
`NodePW:` + fmt.Sprintf("%s", h.NodePW) + `,`,
356402
`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),
358407
`}`,
359408
}, "")
360409
return s + " with Payload:\n" + fmt.Sprintf("%s", string(h.Payload))

0 commit comments

Comments
 (0)