more
[metze/wireshark/wip.git] / dfilters
index 2c2a0dea24528260b96e96a974eac0ede57e7458..5a89fafac701099ffaff90ad2ec8de28e1dac4ac 100644 (file)
--- a/dfilters
+++ b/dfilters
@@ -7,11 +7,10 @@
 "IPv4 address isn't 192.0.2.1 (don't use != for this!)" !(ip.addr == 192.0.2.1)
 "IPv6 only" ipv6
 "IPv6 address 2001:db8::1" ipv6.addr == 2001:db8::1
-"IPX only" ipx
 "TCP only" tcp
 "UDP only" udp
 "Non-DNS" !(udp.port == 53 || tcp.port == 53)
 "TCP or UDP port is 80 (HTTP)" tcp.port == 80 || udp.port == 80
 "HTTP" http
 "No ARP and no DNS" not arp and !(udp.port == 53)
-"Non-HTTP and non-SMTP to/from 192.0.2.1" not (tcp.port == 80) and not (tcp.port == 25) and ip.addr == 192.0.2.1
+"Non-HTTP and non-SMTP to/from 192.0.2.1" ip.addr == 192.0.2.1 and not tcp.port in {80 25}