mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
ipsec: Fix typos in references to IPsec's ESP
ESP is "Encapsulating Security Payload", not "Encapsulated Security Payload". This patch fixes all the place in the tree I could find with `grep -i encapsulated security`. MFC after: 3 days Reviewed by: ae Differential Revision: https://reviews.freebsd.org/D53769
This commit is contained in:
parent
a8b0208e7e
commit
15afd75e67
4 changed files with 6 additions and 6 deletions
|
|
@ -1,5 +1,5 @@
|
|||
.\"
|
||||
.Dd April 18, 2025
|
||||
.Dd December 4, 2025
|
||||
.Dt IPFW 8
|
||||
.Os
|
||||
.Sh NAME
|
||||
|
|
@ -1669,7 +1669,7 @@ Destination options
|
|||
.Pq Cm dstopt ,
|
||||
IPSec authentication headers
|
||||
.Pq Cm ah ,
|
||||
and IPsec encapsulated security payload headers
|
||||
and IPsec encapsulating security payload headers
|
||||
.Pq Cm esp .
|
||||
.It Cm fib Ar fibnum
|
||||
Matches a packet that has been tagged to use
|
||||
|
|
|
|||
|
|
@ -289,7 +289,7 @@ print_ext6hdr(struct buf_pr *bp, const ipfw_insn *cmd )
|
|||
sep = ',';
|
||||
}
|
||||
if (cmd->arg1 & EXT_ESP) {
|
||||
bprintf(bp, "%cencapsulated security payload", sep);
|
||||
bprintf(bp, "%cencapsulating security payload", sep);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
.\" SUCH DAMAGE.
|
||||
.\"
|
||||
.Dd September 15, 2023
|
||||
.Dd December 4, 2025
|
||||
.Dt PING 8
|
||||
.Os
|
||||
.Sh NAME
|
||||
|
|
@ -534,7 +534,7 @@ IPv6 address of the final destination node.
|
|||
.Ss Experimental options only for IPv6 target
|
||||
.Bl -tag -width indent
|
||||
.It Fl E
|
||||
Enables transport-mode IPsec encapsulated security payload.
|
||||
Enables transport-mode IPsec encapsulating security payload.
|
||||
.It Fl Z
|
||||
Enables transport-mode IPsec authentication header.
|
||||
.El
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
* RFC1827/2406 Encapsulated Security Payload.
|
||||
* RFC 1827 & RFC 2406: Encapsulating Security Payload.
|
||||
*/
|
||||
|
||||
#ifndef _NETIPSEC_ESP_H_
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue