diff --git a/pkg/common/interfaces.go b/pkg/common/interfaces.go index fc70c3d..ca4e200 100644 --- a/pkg/common/interfaces.go +++ b/pkg/common/interfaces.go @@ -181,12 +181,10 @@ func (i *BaseInterface) SendLinkPacket(dest []byte, data []byte, timestamp time. packet = append(packet, 0x02) // Link packet type packet = append(packet, dest...) - // Add timestamp ts := make([]byte, 8) binary.BigEndian.PutUint64(ts, uint64(timestamp.Unix())) // #nosec G115 packet = append(packet, ts...) - // Add data packet = append(packet, data...) return i.Send(packet, "")