diff options
author | Denis Ovsienko <denis@ovsienko.info> | 2021-02-06 15:22:38 +0000 |
---|---|---|
committer | Denis Ovsienko <denis@ovsienko.info> | 2021-02-06 15:29:25 +0000 |
commit | 881422066a442fee788e16de90009200729ec6dc (patch) | |
tree | 760c911a989af335db036b372f3a12f0e00472d0 /pcap-filter.manmisc.in | |
parent | 90f884695a977f4edc86c3ce2a0a22e1a279d52f (diff) |
man: Refine "inclusive" for portrange. [skip appveyor]
Diffstat (limited to 'pcap-filter.manmisc.in')
-rw-r--r-- | pcap-filter.manmisc.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pcap-filter.manmisc.in b/pcap-filter.manmisc.in index 61f0b092..b4296901 100644 --- a/pcap-filter.manmisc.in +++ b/pcap-filter.manmisc.in @@ -18,7 +18,7 @@ .\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF .\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. .\" -.TH PCAP-FILTER @MAN_MISC_INFO@ "2 September 2020" +.TH PCAP-FILTER @MAN_MISC_INFO@ "6 February 2021" .SH NAME pcap-filter \- packet filter syntax .br @@ -246,7 +246,7 @@ True if the packet has a source port value of \fIport\fP. True if either the source or destination port of the packet is \fIport\fP. .IP "\fBdst portrange \fIport1-port2\fR" True if the packet is IPv4 TCP, IPv4 UDP, IPv6 TCP or IPv6 UDP and has a -destination port value between \fIport1\fP and \fIport2\fP (inclusive). +destination port value between \fIport1\fP and \fIport2\fP (both inclusive). .I port1 and .I port2 @@ -256,10 +256,10 @@ parameter for .BR port . .IP "\fBsrc portrange \fIport1-port2\fR" True if the packet has a source port value between \fIport1\fP and -\fIport2\fP (inclusive). +\fIport2\fP (both inclusive). .IP "\fBportrange \fIport1-port2\fR" True if either the source or destination port of the packet is between -\fIport1\fP and \fIport2\fP (inclusive). +\fIport1\fP and \fIport2\fP (both inclusive). .IP Any of the above port or port range expressions can be prepended with the keywords, \fBtcp\fP or \fBudp\fP, as in: |