X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Code%2FProjects%2FPacketLevelSignatureExtractor%2Fsrc%2Fmain%2Fjava%2Fedu%2Fuci%2Fiotproject%2Fanalysis%2FTcpConversationUtils.java;fp=Code%2FProjects%2FPacketLevelSignatureExtractor%2Fsrc%2Fmain%2Fjava%2Fedu%2Fuci%2Fiotproject%2Fanalysis%2FTcpConversationUtils.java;h=e53551915bb9b8ef989e2d046692e723e8f7633c;hb=a74eb9a9696796e28d6e35e276b7b33fb4079aec;hp=a4217ccbb821421e86c4a75789c96fe93eaeb056;hpb=6b260fc32264d89db32fdb745cd4f7c58d8acced;p=pingpong.git diff --git a/Code/Projects/PacketLevelSignatureExtractor/src/main/java/edu/uci/iotproject/analysis/TcpConversationUtils.java b/Code/Projects/PacketLevelSignatureExtractor/src/main/java/edu/uci/iotproject/analysis/TcpConversationUtils.java index a4217cc..e535519 100644 --- a/Code/Projects/PacketLevelSignatureExtractor/src/main/java/edu/uci/iotproject/analysis/TcpConversationUtils.java +++ b/Code/Projects/PacketLevelSignatureExtractor/src/main/java/edu/uci/iotproject/analysis/TcpConversationUtils.java @@ -329,7 +329,7 @@ public class TcpConversationUtils { * Set of port numbers that we consider TLS traffic. * Note: purposefully initialized as a {@link HashSet} to get O(1) {@code contains()} call. */ - private static final Set TLS_PORTS = Stream.of(443, 8443, 41143). + private static final Set TLS_PORTS = Stream.of(443, 8443, 41143, 5671, 30001). collect(Collectors.toCollection(HashSet::new)); /**