Implementing relaxed matching for layer 2 and layer 3.
[pingpong.git] / Code / Projects / PacketLevelSignatureExtractor / src / main / java / edu / uci / iotproject / analysis / TcpConversationUtils.java
index a4217ccbb821421e86c4a75789c96fe93eaeb056..e53551915bb9b8ef989e2d046692e723e8f7633c 100644 (file)
@@ -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.
      */
      * 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<Integer> TLS_PORTS = Stream.of(443, 8443, 41143).
+    private static final Set<Integer> TLS_PORTS = Stream.of(443, 8443, 41143, 5671, 30001).
             collect(Collectors.toCollection(HashSet::new));
 
     /**
             collect(Collectors.toCollection(HashSet::new));
 
     /**