mirror of
https://git.freebsd.org/src.git
synced 2026-01-17 07:11:54 +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
(cherry picked from commit 15afd75e67)
This commit is contained in:
parent
307a6241d0
commit
a409ba2e30
4 changed files with 6 additions and 6 deletions
|
|
@ -1,5 +1,5 @@
|
|||
.\"
|
||||
.Dd September 28, 2023
|
||||
.Dd December 4, 2025
|
||||
.Dt IPFW 8
|
||||
.Os
|
||||
.Sh NAME
|
||||
|
|
@ -1614,7 +1614,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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
.\"
|
||||
.\" @(#)ping.8 8.2 (Berkeley) 12/11/93
|
||||
.\"
|
||||
.Dd September 15, 2023
|
||||
.Dd December 4, 2025
|
||||
.Dt PING 8
|
||||
.Os
|
||||
.Sh NAME
|
||||
|
|
@ -536,7 +536,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