Skip to content

Changes

Summary

  1. Update build javadoc step (details)
Commit 90fb10a52a1114afe15cd3587d0e1a4d64a4c466 by Bernd Hufmann
Update build javadoc step

Due to Tycho upgrade to 4.0.3 it is necessary to add compile to the
javadoc step.

Change-Id: I156f534a6d5f46d6ff405e8888e128ef7395b9dd
Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
The file was modified jenkins/pipelines/tracecompass-incubator-jdk17.Jenkinsfile
The file was modified jenkins/pipelines/tracecompass-jdk17.Jenkinsfile

Summary

  1. pcap: Fix unknown packet character string (details)
Commit 10eb735e602bd7f3c09c81c905886bf02287ee14 by Patrick Tasse
pcap: Fix unknown packet character string

By converting the byte array to a String, the output terminates at the
first 0x00 byte encountered. Instead, iterate through every byte and
append it as a character to a string builder, replacing non-printable
characters with the middle-dot character.

Change-Id: Ibcddb1b414ce585c0208da3a0cab81e25ff5684d
Signed-off-by: Patrick Tasse <patrick.tasse@gmail.com>
The file was modified pcap/org.eclipse.tracecompass.pcap.core.tests/src/org/eclipse/tracecompass/pcap/core/tests/protocol/unknown/UnknownPacketTest.java
The file was modified pcap/org.eclipse.tracecompass.pcap.core/src/org/eclipse/tracecompass/internal/pcap/core/protocol/unknown/UnknownPacket.java