Clean up some formatting.

List syntax is *not* one of the more straightforward parts of AsciiDoc.

Change-Id: Icfed27de84c8c11cad02c4ba4d359786cd480eea
Reviewed-on: https://code.wireshark.org/review/34423
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2019-09-01 14:49:54 -07:00
parent 9ae6abdec9
commit 286369a758
1 changed files with 32 additions and 32 deletions

View File

@ -510,12 +510,12 @@ of the types and example of how to express them.
Unsigned integer::
Can be 8, 16, 24, 32, or 64 bits. You can express integers in decimal, octal,
or hexadecimal. The following display filters are equivalent:
ip.len le 1500
ip.len le 02734
ip.len le 0x5dc
+
`ip.len le 1500`
+
`ip.len le 02734`
+
`ip.len le 0x5dc`
Signed integer::
Can be 8, 16, 24, 32, or 64 bits. As with unsigned integers you can use
@ -523,12 +523,12 @@ Signed integer::
Boolean::
Can be 1, if true, or 0, if false.
+
Because an expression containing a field name, but not comparing it
with a value, matches all packets that contain that field, an
expression such as `tcp.flags.syn` will match all TCP segments
containing the flags field, regardless of whether the SYN flag is set.
+
To match only TCP segments in which the SYN flag is set, the
expression `tcp.flags.syn == 1` must be used. Similarly, to find
source-routed token ring packets, a filter expression of `tr.sr == 1`
@ -537,25 +537,25 @@ Boolean::
Ethernet address::
6 bytes separated by a colon (:), dot (.) or dash (-) with one or two bytes between separators:
eth.dst == ff:ff:ff:ff:ff:ff
eth.dst == ff-ff-ff-ff-ff-ff
eth.dst == ffff.ffff.ffff
+
`eth.dst == ff:ff:ff:ff:ff:ff`
+
`eth.dst == ff-ff-ff-ff-ff-ff`
+
`eth.dst == ffff.ffff.ffff`
IPv4 address::
ip.addr == 192.168.0.1
`ip.addr == 192.168.0.1`
+
Classless InterDomain Routing (CIDR) notation can be used to test if
an IPv4 address is in a certain subnet. For example, this display
filter will find all packets in the 129.111 Class-B network:
ip.addr == 129.111.0.0/16
+
`ip.addr == 129.111.0.0/16`
IPv6 address::
`ipv6.addr == ::1`
+
As with IPv4 addresses, IPv6 addresses can match a subnet.
Text string::