mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-07-03 21:21:12 +08:00
Add search by source port via exact match
This commit is contained in:
parent
5637191b13
commit
479aeb794b
@ -128,6 +128,7 @@ public class ConnectionDescriptor implements Serializable {
|
||||
l7proto.toLowerCase().contains(filter) ||
|
||||
Integer.toString(uid).equals(filter) ||
|
||||
Integer.toString(dst_port).contains(filter) ||
|
||||
Integer.toString(src_port).equals(filter) ||
|
||||
((app != null) && (app.getName().toLowerCase().contains(filter) ||
|
||||
app.getPackageName().equals(filter)))
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user