Merge remote-tracking branch 'origin/master' into parse-pcap

# Conflicts:
#	src/main/java/ru/serega6531/packmate/model/enums/SubscriptionMessageType.java
This commit is contained in:
serega6531
2020-04-10 22:02:55 +03:00
9 changed files with 43 additions and 46 deletions

View File

@@ -22,6 +22,6 @@ public class CtfService {
private boolean mergeAdjacentPackets;
private boolean inflateWebSockets;
private boolean parseWebSockets;
}

View File

@@ -53,7 +53,7 @@ public class Packet {
private boolean ungzipped;
private boolean webSocketInflated;
private boolean webSocketParsed;
private byte[] content;

View File

@@ -28,6 +28,8 @@ public class Pattern {
@GeneratedValue(generator = "pattern_generator")
private int id;
private boolean enabled;
private String name;
private String value;

View File

@@ -5,5 +5,6 @@ public enum SubscriptionMessageType {
DELETE_SERVICE, DELETE_PATTERN,
NEW_STREAM,
COUNTERS_UPDATE,
ENABLE_PATTERN, DISABLE_PATTERN,
PCAP_STARTED, PCAP_STOPPED
}