WSUG: typo in ip.src example

This commit is contained in:
Valerii Zapodovnikov 2020-12-29 15:24:18 +00:00
parent b586e194bd
commit ecf91c06de
1 changed files with 1 additions and 1 deletions

View File

@ -615,7 +615,7 @@ You can combine filter expressions in Wireshark using the logical operators show
|===
|English |C-like |Description | Example
|and |&&| Logical AND | `ip.src==10.0.0.5 and tcp.flags.fin`
|or |\|\| | Logical OR |`ip.scr==10.0.0.5 or ip.src==192.1.1.1`
|or |\|\| | Logical OR |`ip.src==10.0.0.5 or ip.src==192.1.1.1`
|xor |^^ | Logical XOR | `tr.dst[0:3] == 0.6.29 xor tr.src[0:3] == 0.6.29`
|not |! | Logical NOT | `not llc`
|[...] | | Subsequence | See “Slice Operator” below.