Skip to content

Commit 8ec6d59

Browse files
committed
fix mos positioning
1 parent 2de94d6 commit 8ec6d59

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"github.com/sipcapture/heplify/sniffer"
1616
)
1717

18-
const version = "heplify 1.66.9"
18+
const version = "heplify 1.66.10"
1919

2020
func createFlags() {
2121

publish/marshal.go

+13-10
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,6 @@ func (h *HepMsg) MarshalTo(dAtA []byte) (int, error) {
183183
i += copy(dAtA[i:], h.NodePW)
184184
}
185185

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-
193186
if h.CID != nil {
194187
i += copy(dAtA[i:], []byte{0x00, 0x00, 0x00, 0x11})
195188
binary.BigEndian.PutUint16(dAtA[i:], 6+uint16(len(h.CID)))
@@ -208,6 +201,13 @@ func (h *HepMsg) MarshalTo(dAtA []byte) (int, error) {
208201
i += copy(dAtA[i:], h.NodeName)
209202
}
210203

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+
211211
return i, nil
212212
}
213213

@@ -230,16 +230,19 @@ func (h *HepMsg) Size() (n int) {
230230
if h.NodePW != "" {
231231
n += 4 + 2 + len(h.NodePW) // len(vendor) + len(chunk) + len(NodePW)
232232
}
233-
if h.Payload != nil {
234-
n += 4 + 2 + len(h.Payload) // len(vendor) + len(chunk) + len(Payload)
235-
}
233+
236234
if h.CID != nil {
237235
n += 4 + 2 + len(h.CID) // len(vendor) + len(chunk) + len(CID)
238236
}
239237
n += 4 + 2 + 2 // len(vendor) + len(chunk) + len(Vlan)
240238
if h.NodeName != "" {
241239
n += 4 + 2 + len(h.NodeName) // len(vendor) + len(chunk) + len(NodeName)
242240
}
241+
242+
if h.Payload != nil {
243+
n += 4 + 2 + len(h.Payload) // len(vendor) + len(chunk) + len(Payload)
244+
}
245+
243246
return n
244247
}
245248

publish/publisher.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ func (pub *Publisher) Start(pq chan *decoder.Packet) {
7272
if pkt.Version == 100 {
7373

7474
if config.Cfg.ReplaceToken {
75-
msg, err := DecodeHEP(pkt.Payload)
75+
tmpver, err := DecodeHEP(pkt.Payload)
7676
if err == nil {
77-
msg.NodePW = config.Cfg.HepNodePW
78-
pkt.Payload, err = msg.Marshal()
77+
tmpver.NodePW = config.Cfg.HepNodePW
78+
forwardMsg, err := tmpver.Marshal()
7979
if err == nil {
80-
pub.output(pkt.Payload)
80+
pub.output(forwardMsg)
8181
} else {
8282
logp.Warn("Bad HEP marshal: %v", err)
8383
}

0 commit comments

Comments
 (0)