Работа над разбором Chunked transfer encoding

This commit is contained in:
serega6531
2020-04-14 02:07:29 +03:00
parent 8157a2aa51
commit ba5ec0e86d
3 changed files with 141 additions and 10 deletions

View File

@@ -57,7 +57,7 @@ public class FilePcapWorker extends AbstractPcapWorker {
final Packet packet = pcap.getNextPacketEx();
gotPacket(packet);
} catch (PcapNativeException e) {
log.error("Pcap read", e);
log.error("Pcap read error: {}", e.getMessage());
Thread.sleep(100);
} catch (EOFException e) {
stop();