mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-19 21:05:25 +08:00
Allow searching by destination port
This commit is contained in:
parent
a1f96c08ed
commit
69f21be864
@ -125,6 +125,7 @@ public class ConnectionDescriptor implements Serializable {
|
||||
dst_ip.contains(filter) ||
|
||||
l7proto.toLowerCase().contains(filter) ||
|
||||
Integer.toString(uid).equals(filter) ||
|
||||
Integer.toString(dst_port).contains(filter) ||
|
||||
((app != null) && (app.getName().toLowerCase().contains(filter) ||
|
||||
app.getPackageName().equals(filter)))
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user