Работа над распаковкой TLS

This commit is contained in:
serega6531
2020-05-01 00:00:50 +03:00
parent 1cc9755d21
commit 49dcd974bc
7 changed files with 79 additions and 65 deletions

View File

@@ -22,6 +22,10 @@ public class PackmateDumpFileLoader {
List<Packet> packets = new ArrayList<>();
for (String line : Files.readAllLines(file.toPath())) {
if (line.startsWith("#")) {
continue;
}
switch (line) {
case "in" -> in = true;
case "out" -> in = false;